move underscores to the end of private members

This commit is contained in:
gabime
2018-06-10 22:59:17 +03:00
parent 7d975de193
commit a21594bec7
24 changed files with 281 additions and 288 deletions

View File

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