removed redundant intialization

This commit is contained in:
gabime 2021-11-16 16:44:47 +02:00
parent 5b7dfefc7e
commit 518bf36aa9

View File

@ -262,9 +262,6 @@ struct file_event_handlers
std::function<void(const filename_t &filename, std::FILE *file_stream)> after_open;
std::function<void(const filename_t &filename, std::FILE *file_stream)> before_close;
std::function<void(const filename_t &filename)> after_close;
file_event_handlers(): before_open(nullptr), after_open(nullptr), before_close(nullptr), after_close(nullptr)
{}
};
namespace details {