clang-format

This commit is contained in:
gabime
2019-07-18 14:26:36 +03:00
parent baa978ab0b
commit a7ba6e447d
5 changed files with 15 additions and 15 deletions

View File

@@ -24,9 +24,15 @@
#include <vector>
#define SPDLOG_LOGGER_CATCH() \
catch (const std::exception &ex) { err_handler_(ex.what());} \
catch (...) {err_handler_("Unknown exception in logger");}
#define SPDLOG_LOGGER_CATCH() \
catch (const std::exception &ex) \
{ \
err_handler_(ex.what()); \
} \
catch (...) \
{ \
err_handler_("Unknown exception in logger"); \
}
namespace spdlog {
class logger