diff options
Diffstat (limited to 'src/support/timing.h')
-rw-r--r-- | src/support/timing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support/timing.h b/src/support/timing.h index d60450442..a8de8de04 100644 --- a/src/support/timing.h +++ b/src/support/timing.h @@ -31,7 +31,7 @@ class Timer { double total = 0; public: - Timer(std::string name) : name(name) {} + Timer(std::string name = "") : name(name) {} void start() { startTime = std::chrono::steady_clock::now(); |