WIP: somethings wrong.. #19

Closed
muellerr wants to merge 808 commits from source/master into master
Showing only changes of commit ecf3b4b535 - Show all commits

View File

@ -9,8 +9,8 @@
#include <iomanip> #include <iomanip>
Stopwatch::Stopwatch(bool displayOnDestruction, Stopwatch::Stopwatch(bool displayOnDestruction,
StopwatchDisplayMode displayMode): displayMode(displayMode), StopwatchDisplayMode displayMode): displayOnDestruction(
displayOnDestruction(displayOnDestruction) { displayOnDestruction), displayMode(displayMode) {
// Measures start time on initialization. // Measures start time on initialization.
startTime = Clock::getUptime(); startTime = Clock::getUptime();
} }