forked from organicmaps/organicmaps
Fix warnings.
This commit is contained in:
parent
59dcc5868f
commit
4026da0de7
2 changed files with 5 additions and 3 deletions
|
@ -69,7 +69,7 @@ namespace my
|
|||
#undef ASSERT
|
||||
#endif
|
||||
#define ASSERT(X, msg)
|
||||
#define VERIFY(X, msg) (X)
|
||||
#define VERIFY(X, msg) (void)(X)
|
||||
#define ASSERT_EQUAL(X, Y, msg)
|
||||
#define ASSERT_NOT_EQUAL(X, Y, msg)
|
||||
#define ASSERT_LESS(X, Y, msg)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue