Small code cleanup for PerformanceTimer

This commit is contained in:
verysecrethero
2016-02-17 13:44:41 +01:00
parent b2a437731e
commit 833015f45e
3 changed files with 13 additions and 23 deletions
-4
View File
@@ -1,10 +1,7 @@
#ifndef PerformanceTimer_h__
#define PerformanceTimer_h__
#include <array>
#include <GLFW/glfw3.h>
#include "../Common.h"
#include <boost/timer/timer.hpp>
using boost::timer::cpu_timer;
@@ -21,7 +18,6 @@ public:
private:
static std::map<std::string, cpu_timer> timers;
static double m_TimeElapsed;
static cpu_timer m_Timer;
static std::string currentTimerRunning;
};