diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-05-26 21:05:30 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-06-02 19:35:50 (GMT) |
commit | c6220de27605f33b2793729680c32714cd126690 (patch) | |
tree | edd5725b84c0d2ed910b9ec945d3086f5324f9aa /Source/cmExtraCodeBlocksGenerator.cxx | |
parent | 9ca8c7a99f193179ebfc893060966c37e3efabca (diff) | |
download | CMake-c6220de27605f33b2793729680c32714cd126690.zip CMake-c6220de27605f33b2793729680c32714cd126690.tar.gz CMake-c6220de27605f33b2793729680c32714cd126690.tar.bz2 |
Use the empty() method to check for emptyness.
Apply fix-its from clang-tidy's readability-container-size-empty
checker.
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 2070b1f..162d98d 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -248,7 +248,7 @@ void cmExtraCodeBlocksGenerator::CreateNewProjectFile( // We don't want paths with CMakeFiles in them // or do we? // In speedcrunch those where purely internal - if (splitted.size() >= 1 && + if (!splitted.empty() && relative.find("CMakeFiles") == std::string::npos) { tree.InsertPath(splitted, 1, fileName); } @@ -729,7 +729,7 @@ std::string cmExtraCodeBlocksGenerator::BuildMakeCommand( const std::string& makeFlags) { std::string command = make; - if (makeFlags.size() > 0) { + if (!makeFlags.empty()) { command += " "; command += makeFlags; } |