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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorrachytski <siarhei.rachytski@gmail.com>2012-07-25 01:51:56 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:41:20 +0300
commit314efd445c4704c67d0b05ca50b2e33383678dd1 (patch)
tree9447e55267150eb59ca972a0eb96807af09830dc /base
parentd8b0f9f88bba7a3fe577d089fd39a78ba92e2170 (diff)
changed visibility of Timer::LocalTime method.
Diffstat (limited to 'base')
-rw-r--r--base/timer.hpp3
1 files changed, 1 insertions, 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();
};