From 7db671a14374fdbfb8ae87ab9618bca111f4e8a5 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 13 Oct 2016 12:47:50 -0400 Subject: cmcldeps: search for single-byte strings as characters --- Source/cmcldeps.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmcldeps.cxx b/Source/cmcldeps.cxx index 167d60a..aed67b9 100644 --- a/Source/cmcldeps.cxx +++ b/Source/cmcldeps.cxx @@ -258,7 +258,7 @@ int main() // needed to suppress filename output of msvc tools std::string srcfilename; { - std::string::size_type pos = srcfile.rfind("\\"); + std::string::size_type pos = srcfile.rfind('\\'); if (pos == std::string::npos) { srcfilename = srcfile; } else { @@ -280,7 +280,7 @@ int main() clrest = replace(clrest, objfile, objfile + ".dep.obj "); // rc: src\x\x.rc -> cl: /Tc src\x\x.rc - if (srcfile.find(" ") != std::string::npos) + if (srcfile.find(' ') != std::string::npos) srcfile = "\"" + srcfile + "\""; clrest = replace(clrest, srcfile, "/Tc " + srcfile); -- cgit v0.12