Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/system/TimeUtils.h')
-rw-r--r--source/blender/freestyle/intern/system/TimeUtils.h43
1 files changed, 23 insertions, 20 deletions
diff --git a/source/blender/freestyle/intern/system/TimeUtils.h b/source/blender/freestyle/intern/system/TimeUtils.h
index 1e3bd05c81d..6d4c56ab15e 100644
--- a/source/blender/freestyle/intern/system/TimeUtils.h
+++ b/source/blender/freestyle/intern/system/TimeUtils.h
@@ -25,37 +25,40 @@
#include <time.h>
#ifdef WITH_CXX_GUARDEDALLOC
-#include "MEM_guardedalloc.h"
+# include "MEM_guardedalloc.h"
#endif
namespace Freestyle {
-class Chronometer
-{
-public:
- inline Chronometer() {}
- inline ~Chronometer() {}
+class Chronometer {
+ public:
+ inline Chronometer()
+ {
+ }
+ inline ~Chronometer()
+ {
+ }
- inline clock_t start()
- {
- _start = clock();
- return _start;
- }
+ inline clock_t start()
+ {
+ _start = clock();
+ return _start;
+ }
- inline double stop()
- {
- clock_t stop = clock();
- return (double)(stop - _start) / CLOCKS_PER_SEC;
- }
+ inline double stop()
+ {
+ clock_t stop = clock();
+ return (double)(stop - _start) / CLOCKS_PER_SEC;
+ }
-private:
- clock_t _start;
+ private:
+ clock_t _start;
#ifdef WITH_CXX_GUARDEDALLOC
- MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:Chronometer")
+ MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:Chronometer")
#endif
};
} /* namespace Freestyle */
-#endif // __FREESTYLE_TIME_UTILS_H__
+#endif // __FREESTYLE_TIME_UTILS_H__