Skip to content

Commit e08859e

Browse files
committed
Fix testrunner compiling
1 parent 4f34a51 commit e08859e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/testtimer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ class TestTimer : public TestFixture {
3535

3636
void result() const {
3737
TimerResultsData t1;
38-
t1._clocks = ~(std::clock_t)0;
38+
t1.mClocks = ~(std::clock_t)0;
3939
ASSERT(t1.seconds() > 100.0);
4040

41-
t1._clocks = CLOCKS_PER_SEC * 5 / 2;
41+
t1.mClocks = CLOCKS_PER_SEC * 5 / 2;
4242
ASSERT(std::fabs(t1.seconds()-2.5) < 0.01);
4343
}
4444
};

0 commit comments

Comments
 (0)