diff options
| author | Ben Woosley <[email protected]> | 2020-02-07 16:24:51 +0000 |
|---|---|---|
| committer | fanquake <[email protected]> | 2020-04-30 18:02:04 +0800 |
| commit | 49f6178c3e5e3ad54a419da9d8523207da17fc64 (patch) | |
| tree | 4b11d3c3b02665b2ce4e04b7a52b9057d31ff55c /src | |
| parent | prevector: Avoid unnamed struct, which is a GNU extension (diff) | |
| download | discoin-49f6178c3e5e3ad54a419da9d8523207da17fc64.tar.xz discoin-49f6178c3e5e3ad54a419da9d8523207da17fc64.zip | |
Drop unused LOG_TIME_MICROS helper
Diffstat (limited to 'src')
| -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 21bb3d121..709409880 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, ...) \ |