diff options
Diffstat (limited to 'src/logging/timer.h')
-rw-r--r-- | src/logging/timer.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/logging/timer.h b/src/logging/timer.h index 21bb3d121e..7094098802 100644 --- a/src/logging/timer.h +++ b/src/logging/timer.h @@ -93,8 +93,6 @@ private: } // namespace BCLog -#define LOG_TIME_MICROS(end_msg, ...) \ - BCLog::Timer<std::chrono::microseconds> PASTE2(logging_timer, __COUNTER__)(__func__, end_msg, ## __VA_ARGS__) #define LOG_TIME_MILLIS(end_msg, ...) \ BCLog::Timer<std::chrono::milliseconds> PASTE2(logging_timer, __COUNTER__)(__func__, end_msg, ## __VA_ARGS__) #define LOG_TIME_SECONDS(end_msg, ...) \ |