mirror of
https://github.com/gabime/spdlog.git
synced 2025-10-01 02:49:03 +08:00
move underscores to the end of private members
This commit is contained in:
@@ -193,10 +193,10 @@ using filename_t = std::string;
|
||||
#define SPDLOG_CATCH_AND_HANDLE \
|
||||
catch (const std::exception &ex) \
|
||||
{ \
|
||||
_err_handler(ex.what()); \
|
||||
err_handler_(ex.what()); \
|
||||
} \
|
||||
catch (...) \
|
||||
{ \
|
||||
_err_handler("Unknown exeption in logger"); \
|
||||
err_handler_("Unknown exeption in logger"); \
|
||||
}
|
||||
} // namespace spdlog
|
||||
|
Reference in New Issue
Block a user