Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharless Milette <charles.milette@gmail.com>2021-11-15 23:27:34 +0300
committerCharless Milette <charles.milette@gmail.com>2021-11-15 23:27:34 +0300
commit2d77ef92b02242cecdf5f1e633706421bf2c2088 (patch)
treea274c2edd6941440c55b58a539c52743899e643c /include/spdlog/stopwatch.h
parentf6901606f5a36047036072d0c6c58f0c9d90bb9f (diff)
Avoid specializing std::formatter for std::tm (not a great idea after all)
Diffstat (limited to 'include/spdlog/stopwatch.h')
-rw-r--r--include/spdlog/stopwatch.h2
1 files changed, 1 insertions, 1 deletions
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