Former-commit-id: 202801199bc149c3fd1e09fbc88f9ffaf77a5481
@@ -21,7 +21,19 @@ namespace igl
{
public:
// default constructor
- Timer()
+ Timer():
+ stopped(0),
+#ifdef WIN32
+ frequency(0),
+ startCount(0),
+ endCount(0)
+#elif __APPLE__
+#else
+ startCount(),
+ endCount()
+#endif
#ifdef WIN32
QueryPerformanceFrequency(&frequency);