From 2d77ef92b02242cecdf5f1e633706421bf2c2088 Mon Sep 17 00:00:00 2001 From: Charless Milette Date: Mon, 15 Nov 2021 15:27:34 -0500 Subject: Avoid specializing std::formatter for std::tm (not a great idea after all) --- include/spdlog/stopwatch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/spdlog/stopwatch.h') diff --git a/include/spdlog/stopwatch.h b/include/spdlog/stopwatch.h index 52b4b6ad..a1542b2d 100644 --- a/include/spdlog/stopwatch.h +++ b/include/spdlog/stopwatch.h @@ -42,7 +42,7 @@ public: void reset() { - start_tp_ = clock ::now(); + start_tp_ = clock::now(); } }; } // namespace spdlog -- cgit v1.2.3