Fix warnings.

This commit is contained in:
vng 2012-08-23 09:22:04 +03:00 committed by Alex Zolotarev
parent 59dcc5868f
commit 4026da0de7
2 changed files with 5 additions and 3 deletions

View file

@ -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)

View file

@ -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