diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-16 20:52:02 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-16 20:52:02 (GMT) |
commit | 809ca6c81fa23cec111a9e97529d71538c55f9eb (patch) | |
tree | e4597803f8385cbc1a38629cca5d102cff492b31 /Source/cmCMakeHostSystemInformationCommand.cxx | |
parent | 516f8edb2e061749c56b6f9a58332fbf59e45a1a (diff) | |
download | CMake-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.cxx | 4 |
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; } |