summaryrefslogtreecommitdiff
path: root/Source/cmGlobalVisualStudio12Generator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-11-20 02:12:00 +0100
committerStephen Kelly <steveire@gmail.com>2013-11-21 20:53:15 +0100
commit4fe963f656c48b1f2fd0b4a2f427bb376f619c37 (patch)
treef04d63d59976dfa868873de1646664f57f59e2e2 /Source/cmGlobalVisualStudio12Generator.cxx
parent7d4b2b2ef36c73c36eefd464fbb17bf34ebdb5fe (diff)
downloadcmake-4fe963f656c48b1f2fd0b4a2f427bb376f619c37.tar.gz
Use new cmHasLiteralPrefix function
Diffstat (limited to 'Source/cmGlobalVisualStudio12Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio12Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio12Generator.cxx b/Source/cmGlobalVisualStudio12Generator.cxx
index edd5567309..3074794b83 100644
--- a/Source/cmGlobalVisualStudio12Generator.cxx
+++ b/Source/cmGlobalVisualStudio12Generator.cxx
@@ -23,7 +23,7 @@ static const char* cmVS12GenName(const char* name, std::string& genName)
return 0;
}
const char* p = name + sizeof(vs12generatorName) - 6;
- if(strncmp(p, " 2013", 5) == 0)
+ if(cmHasLiteralPrefix(p, " 2013"))
{
p += 5;
}