diff --git a/src/core/model/system-path.cc b/src/core/model/system-path.cc index d4c0a38c5..ea4ac42ee 100644 --- a/src/core/model/system-path.cc +++ b/src/core/model/system-path.cc @@ -67,13 +67,12 @@ #endif /** - * \def SYSTEM_PATH_SEP * System-specific path separator used between directory names. */ #if defined(__WIN32__) -#define SYSTEM_PATH_SEP "\\" +constexpr auto SYSTEM_PATH_SEP = "\\"; #else -#define SYSTEM_PATH_SEP "/" +constexpr auto SYSTEM_PATH_SEP = "/"; #endif /**