From e6265c04ae056c134e5984f44beb0f8aaf871dac Mon Sep 17 00:00:00 2001 From: espkk Date: Thu, 14 Apr 2022 23:28:54 +0300 Subject: [PATCH] Make file_event_handlers an aggregate --- include/spdlog/common.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/spdlog/common.h b/include/spdlog/common.h index 3da06cadd..8259c733d 100644 --- a/include/spdlog/common.h +++ b/include/spdlog/common.h @@ -311,12 +311,6 @@ struct file_event_handlers std::function after_open; std::function before_close; std::function after_close; - file_event_handlers() - : before_open{nullptr} - , after_open{nullptr} - , before_close{nullptr} - , after_close{nullptr} - {} }; namespace details {