summaryrefslogtreecommitdiffstats
path: root/Source/cmCMakeHostSystemInformationCommand.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-16 20:52:02 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-16 20:52:02 (GMT)
commit809ca6c81fa23cec111a9e97529d71538c55f9eb (patch)
treee4597803f8385cbc1a38629cca5d102cff492b31 /Source/cmCMakeHostSystemInformationCommand.cxx
parent516f8edb2e061749c56b6f9a58332fbf59e45a1a (diff)
downloadCMake-809ca6c81fa23cec111a9e97529d71538c55f9eb.zip
CMake-809ca6c81fa23cec111a9e97529d71538c55f9eb.tar.gz
CMake-809ca6c81fa23cec111a9e97529d71538c55f9eb.tar.bz2
Use braces around statements
Diffstat (limited to 'Source/cmCMakeHostSystemInformationCommand.cxx')
-rw-r--r--Source/cmCMakeHostSystemInformationCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCMakeHostSystemInformationCommand.cxx b/Source/cmCMakeHostSystemInformationCommand.cxx
index fdbd5e7..6ff7575 100644
--- a/Source/cmCMakeHostSystemInformationCommand.cxx
+++ b/Source/cmCMakeHostSystemInformationCommand.cxx
@@ -42,9 +42,9 @@ bool cmCMakeHostSystemInformationCommand::InitialPass(
result_list += ";";
}
std::string value;
- if (!this->GetValue(info, key, value))
+ if (!this->GetValue(info, key, value)) {
return false;
-
+ }
result_list += value;
}