From 314efd445c4704c67d0b05ca50b2e33383678dd1 Mon Sep 17 00:00:00 2001 From: rachytski Date: Tue, 24 Jul 2012 14:51:56 -0700 Subject: [PATCH] changed visibility of Timer::LocalTime method. --- base/timer.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/base/timer.hpp b/base/timer.hpp index 92799aa702..232e76fc10 100644 --- a/base/timer.hpp +++ b/base/timer.hpp @@ -12,11 +12,10 @@ class Timer { double m_startTime; - static double LocalTime(); - public: Timer(); + static double LocalTime(); double ElapsedSeconds() const; void Reset(); };