rename file_event_handlers_t to file_event_handlers

This commit is contained in:
gabime
2021-11-16 16:41:04 +02:00
parent e86be93b4a
commit 5b7dfefc7e
11 changed files with 25 additions and 25 deletions

View File

@@ -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