rename file_event_handlers_t to file_event_handlers
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
namespace spdlog {
|
||||
namespace details {
|
||||
|
||||
SPDLOG_INLINE file_helper::file_helper(const file_event_handlers_t& event_handlers)
|
||||
SPDLOG_INLINE file_helper::file_helper(const file_event_handlers& event_handlers)
|
||||
: event_handlers_(event_handlers)
|
||||
{}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ class SPDLOG_API file_helper
|
||||
{
|
||||
public:
|
||||
file_helper() = default;
|
||||
explicit file_helper(const file_event_handlers_t& event_handlers);
|
||||
explicit file_helper(const file_event_handlers& event_handlers);
|
||||
|
||||
file_helper(const file_helper &) = delete;
|
||||
file_helper &operator=(const file_helper &) = delete;
|
||||
@@ -51,7 +51,7 @@ private:
|
||||
const unsigned int open_interval_ = 10;
|
||||
std::FILE *fd_{nullptr};
|
||||
filename_t filename_;
|
||||
file_event_handlers_t event_handlers_;
|
||||
file_event_handlers event_handlers_;
|
||||
};
|
||||
} // namespace details
|
||||
} // namespace spdlog
|
||||
|
||||
Reference in New Issue
Block a user