Fixed usages of path_list_separator

This commit is contained in:
Elad Solomon 2022-09-08 19:57:08 +03:00 committed by Tomer Lev
parent 4043b67e0b
commit dfd6cbe6b4
3 changed files with 6 additions and 6 deletions

View file

@ -78,9 +78,9 @@ extern HeapLeakChecker* heap_checker;
#endif
#if defined(_MSC_VER)
const char path_list_separator = ';';
inline constexpr std::string_view path_list_separator = ";";
#else
const char path_list_separator = ':';
inline constexpr std::string_view path_list_separator = ":";
#endif
extern "C"