Update btQuickprof.cpp

removed inline declaration from get time seconds function definition
This commit is contained in:
Haydn Trigg
2014-08-01 07:25:31 +09:30
parent 6ff7a6d48b
commit 3d944782e9

View File

@@ -239,7 +239,7 @@ unsigned long int btClock::getTimeMicroseconds()
/// Returns the time in s since the last call to reset or since
/// the Clock was created.
inline btScalar btClock::getTimeSeconds()
btScalar btClock::getTimeSeconds()
{
static const btScalar microseconds_to_seconds = btScalar(0.000001);
return btScalar(getTimeMicroseconds()) * microseconds_to_seconds;