From bfed6131327bdae1948c0220598ded32a4991768 Mon Sep 17 00:00:00 2001 From: Fred Baksik Date: Fri, 24 Jul 2020 19:34:25 -0400 Subject: 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 == ' \\' ^~~~~ --- Utilities/std/cm/bits/fs_path.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/std/cm/bits/fs_path.cxx b/Utilities/std/cm/bits/fs_path.cxx index b8c5631..8089998 100644 --- a/Utilities/std/cm/bits/fs_path.cxx +++ b/Utilities/std/cm/bits/fs_path.cxx @@ -331,7 +331,7 @@ private: while (ptr != end && (*ptr == '/' # if defined(_WIN32) - || *ptr == ' \\' + || *ptr == '\\' # endif )) { ptr += step; -- cgit v0.12