summaryrefslogtreecommitdiffstats
path: root/Source/cmPolicies.cxx
diff options
context:
space:
mode:
authorPavel Solodovnikov <hellyeahdominate@gmail.com>2017-09-15 22:42:59 (GMT)
committerPavel Solodovnikov <hellyeahdominate@gmail.com>2017-09-21 08:23:19 (GMT)
commit37d9387be37b5ad51b518d5df467b64e88f73350 (patch)
tree91d6c8ff19c59b296bef0166b8a4da6ff6180190 /Source/cmPolicies.cxx
parent1cf94375174e7b939148a3ec7e3ae004d511719e (diff)
downloadCMake-37d9387be37b5ad51b518d5df467b64e88f73350.zip
CMake-37d9387be37b5ad51b518d5df467b64e88f73350.tar.gz
CMake-37d9387be37b5ad51b518d5df467b64e88f73350.tar.bz2
Replace empty-string comparisons with checking against `empty()`.
Diffstat (limited to 'Source/cmPolicies.cxx')
-rw-r--r--Source/cmPolicies.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx
index a1f346a..e7d1b72 100644
--- a/Source/cmPolicies.cxx
+++ b/Source/cmPolicies.cxx
@@ -140,7 +140,7 @@ static bool GetPolicyDefault(cmMakefile* mf, std::string const& policy,
*defaultSetting = cmPolicies::NEW;
} else if (defaultValue == "OLD") {
*defaultSetting = cmPolicies::OLD;
- } else if (defaultValue == "") {
+ } else if (defaultValue.empty()) {
*defaultSetting = cmPolicies::WARN;
} else {
std::ostringstream e;