Another typo
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@502 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -229,7 +229,7 @@ static const unsigned long clockticks = CLOCKS_PER_SEC;
|
|||||||
class TimerImplStd : public TimerImpl
|
class TimerImplStd : public TimerImpl
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TimerImplStd() : freq_(clockticks) { reset(); }
|
TimerImplStd() : freq_(clockticks),count_(0),start_(0) { reset(); }
|
||||||
~TimerImplStd() { ; }
|
~TimerImplStd() { ; }
|
||||||
|
|
||||||
virtual void reset(void) { count_ = 0; }
|
virtual void reset(void) { count_ = 0; }
|
||||||
@@ -254,7 +254,6 @@ void TimerImplStd::stop(void)
|
|||||||
|
|
||||||
// ----------------------------------------------------------------- Timer ----
|
// ----------------------------------------------------------------- Timer ----
|
||||||
|
|
||||||
#if ! (defined(WIN32) && (defined(_MSC_VER) || defined(__INTEL_COMPILER)))
|
|
||||||
Timer::Timer(void)
|
Timer::Timer(void)
|
||||||
{
|
{
|
||||||
#if defined(WIN32) && defined(_MSC_VER)
|
#if defined(WIN32) && defined(_MSC_VER)
|
||||||
@@ -276,7 +275,6 @@ Timer::Timer(void)
|
|||||||
#endif
|
#endif
|
||||||
state_ = Stopped;
|
state_ = Stopped;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
Timer::~Timer(void)
|
Timer::~Timer(void)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user