STL Support: Fix cm::filesystem warnings; check for '\' not multichar ' \'.

Utilities/std/cm/bits/fs_path.cxx:334:24: warning: multi-character character constant [-Wmultichar]
             || *ptr == ' \\'
                        ^~~~~
This commit is contained in:
Fred Baksik
2020-07-24 19:34:25 -04:00
parent 1138907a58
commit bfed613132

View File

@@ -331,7 +331,7 @@ private:
while (ptr != end &&
(*ptr == '/'
# if defined(_WIN32)
|| *ptr == ' \\'
|| *ptr == '\\'
# endif
)) {
ptr += step;