diff --git a/include/spdlog/tweakme.h b/include/spdlog/tweakme.h index 24361f30..b2d4a80d 100644 --- a/include/spdlog/tweakme.h +++ b/include/spdlog/tweakme.h @@ -49,7 +49,7 @@ /////////////////////////////////////////////////////////////////////////////// // Uncomment to enable usage of wchar_t for file names on Windows. // -// #define SPDLOG_WCHAR_FILENAMES +#define SPDLOG_WCHAR_FILENAMES /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// @@ -77,7 +77,7 @@ /////////////////////////////////////////////////////////////////////////////// // Uncomment to enable wchar_t support (convert to utf8) // -// #define SPDLOG_WCHAR_TO_UTF8_SUPPORT +#define SPDLOG_WCHAR_TO_UTF8_SUPPORT /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// @@ -104,7 +104,7 @@ // Uncomment to disable default logger creation. // This might save some (very) small initialization time if no default logger is needed. // -// #define SPDLOG_DISABLE_DEFAULT_LOGGER +#define SPDLOG_DISABLE_DEFAULT_LOGGER /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// @@ -120,5 +120,5 @@ // __PRETTY_FUNCTION__ might be nicer in clang/gcc, and __FUNCTION__ in msvc. // Defaults to __FUNCTION__ (should work on all compilers) if not defined. // -// #define SPDLOG_FUNCTION __PRETTY_FUNCTION__ +#define SPDLOG_FUNCTION __PRETTY_FUNCTION__ ///////////////////////////////////////////////////////////////////////////////