summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio6Generator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-01-16 00:12:53 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-24 18:47:17 (GMT)
commit524610f967e5289810a0d67a2942493d8f61d1dd (patch)
tree454aad5f601380dc9295296759d453653b5261ec /Source/cmGlobalVisualStudio6Generator.cxx
parent0e14c7ee6375fcaa975194557523f5a1a8686a8a (diff)
downloadCMake-524610f967e5289810a0d67a2942493d8f61d1dd.zip
CMake-524610f967e5289810a0d67a2942493d8f61d1dd.tar.gz
CMake-524610f967e5289810a0d67a2942493d8f61d1dd.tar.bz2
Replace 'foo.size() == 0' pattern with foo.empty().
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio6Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx
index 65a15ee..b7c897c 100644
--- a/Source/cmGlobalVisualStudio6Generator.cxx
+++ b/Source/cmGlobalVisualStudio6Generator.cxx
@@ -255,7 +255,7 @@ void cmGlobalVisualStudio6Generator
::OutputDSWFile(cmLocalGenerator* root,
std::vector<cmLocalGenerator*>& generators)
{
- if(generators.size() == 0)
+ if(generators.empty())
{
return;
}