mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-30 10:29:02 +08:00
rename file_event_handlers_t to file_event_handlers
This commit is contained in:
@@ -256,7 +256,7 @@ struct source_loc
|
||||
const char *funcname{nullptr};
|
||||
};
|
||||
|
||||
typedef struct file_event_handlers
|
||||
struct file_event_handlers
|
||||
{
|
||||
std::function<void(const filename_t &filename)> before_open;
|
||||
std::function<void(const filename_t &filename, std::FILE *file_stream)> after_open;
|
||||
@@ -265,7 +265,7 @@ typedef struct file_event_handlers
|
||||
|
||||
file_event_handlers(): before_open(nullptr), after_open(nullptr), before_close(nullptr), after_close(nullptr)
|
||||
{}
|
||||
} file_event_handlers_t;
|
||||
};
|
||||
|
||||
namespace details {
|
||||
// make_unique support for pre c++14
|
||||
|
Reference in New Issue
Block a user