// support forward slash in windows

This commit is contained in:
gabime
2019-10-25 12:52:39 +03:00
parent a8f72424db
commit e9d42e059f
2 changed files with 8 additions and 12 deletions

View File

@@ -33,7 +33,7 @@ SPDLOG_CONSTEXPR static const char *default_eol = SPDLOG_EOL;
// folder separator
#ifdef _WIN32
const char folder_sep = '\\';
static const char folder_sep = '\\';
#else
SPDLOG_CONSTEXPR static const char folder_sep = '/';
#endif