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
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2012-08-23 10:22:04 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:42:26 +0300
commit4026da0de7d7e43d855ff7ffcc9cd0cfb9955001 (patch)
tree00825127239e278190538b215c08e3c02215f89b /platform
parent59dcc5868f40760c21b24b18873d7e8a077a8776 (diff)
Fix warnings.
Diffstat (limited to 'platform')
-rw-r--r--platform/platform_tests/video_timer_test.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/platform/platform_tests/video_timer_test.cpp b/platform/platform_tests/video_timer_test.cpp
index 2dafbeb0d4..04c3797c50 100644
--- a/platform/platform_tests/video_timer_test.cpp
+++ b/platform/platform_tests/video_timer_test.cpp
@@ -17,9 +17,10 @@ void incrementValue(int & i)
UNIT_TEST(TimerTest)
{
+ /*
int i = 0;
-/* VideoTimer * videoTimer = CreatePThreadVideoTimer(bind(&incrementValue, ref(i)));
+ VideoTimer * videoTimer = CreatePThreadVideoTimer(bind(&incrementValue, ref(i)));
LOG(LINFO, ("checking for approximately 60 cycles in second"));
@@ -41,7 +42,8 @@ UNIT_TEST(TimerTest)
threads::Sleep(200);
- videoTimer->stop();*/
+ videoTimer->stop();
+ */
}
#endif