mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-27 00:28:49 +03:00
r15 | charles.nicholson | 2010-03-17 20:08:52 -0500 (Wed, 17 Mar 2010) | 1 line
simple changes from sony
This commit is contained in:
parent
b9825d16f8
commit
c95e86cf8b
4 changed files with 4 additions and 7 deletions
|
|
@ -19,7 +19,7 @@ private:
|
|||
|
||||
namespace TimeHelpers
|
||||
{
|
||||
void SleepMs (int ms);
|
||||
void SleepMs(int ms);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@
|
|||
\
|
||||
void Test##Fixture##Name::RunImpl() const \
|
||||
{ \
|
||||
bool ctorOk = false; \
|
||||
volatile bool ctorOk = false; \
|
||||
UT_TRY \
|
||||
({ \
|
||||
Fixture##Name##Helper fixtureHelper(m_details); \
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ __int64 Timer::GetTime() const
|
|||
return curTime.QuadPart;
|
||||
}
|
||||
|
||||
void TimeHelpers::SleepMs(int const ms)
|
||||
void TimeHelpers::SleepMs(int ms)
|
||||
{
|
||||
::Sleep(ms);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,12 +36,9 @@ private:
|
|||
|
||||
namespace TimeHelpers
|
||||
{
|
||||
void SleepMs (int ms);
|
||||
void SleepMs(int ms);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue