diff options
author | Asit Dhal <dhal.asitk@gmail.com> | 2020-12-14 03:46:38 (GMT) |
---|---|---|
committer | Asit Dhal <dhal.asitk@gmail.com> | 2020-12-14 03:55:55 (GMT) |
commit | 99a98eefac1aa9f4a3c6b0f3fd614182ec851571 (patch) | |
tree | 2eebaa8bc1048ec7a02862ba23bef92bcc8511ce /Source/cmCMakePolicyCommand.cxx | |
parent | 4621ffb0285b32898fa7b8ddd8380d39c597642c (diff) | |
download | CMake-99a98eefac1aa9f4a3c6b0f3fd614182ec851571.zip CMake-99a98eefac1aa9f4a3c6b0f3fd614182ec851571.tar.gz CMake-99a98eefac1aa9f4a3c6b0f3fd614182ec851571.tar.bz2 |
cmake_policy: Add check for return value of SetPolicyVersion
Fixes: #21557
Diffstat (limited to 'Source/cmCMakePolicyCommand.cxx')
-rw-r--r-- | Source/cmCMakePolicyCommand.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmCMakePolicyCommand.cxx b/Source/cmCMakePolicyCommand.cxx index b7f08d2..1f99043 100644 --- a/Source/cmCMakePolicyCommand.cxx +++ b/Source/cmCMakePolicyCommand.cxx @@ -191,8 +191,7 @@ bool HandleVersionMode(std::vector<std::string> const& args, return false; } - status.GetMakefile().SetPolicyVersion(version_min, version_max); - return true; + return status.GetMakefile().SetPolicyVersion(version_min, version_max); } bool HandleGetWarningMode(std::vector<std::string> const& args, |