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:
Patrick Johnmeyer 2013-01-09 23:43:59 -06:00
parent b9825d16f8
commit c95e86cf8b
4 changed files with 4 additions and 7 deletions

View file

@ -19,7 +19,7 @@ private:
namespace TimeHelpers
{
void SleepMs (int ms);
void SleepMs(int ms);
}

View file

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

View file

@ -41,7 +41,7 @@ __int64 Timer::GetTime() const
return curTime.QuadPart;
}
void TimeHelpers::SleepMs(int const ms)
void TimeHelpers::SleepMs(int ms)
{
::Sleep(ms);
}

View file

@ -36,12 +36,9 @@ private:
namespace TimeHelpers
{
void SleepMs (int ms);
void SleepMs(int ms);
}
}
#endif