diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-07 22:09:12 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-17 20:14:37 (GMT) |
commit | 4dc4570734e70c47c8bb6d658c1014f29068e106 (patch) | |
tree | f233eec6e04464ac75bf1c122cedfd04d64b67bf /Source | |
parent | 12c82fd8c0612b1360627b6717c4d5744abd4fa0 (diff) | |
download | CMake-4dc4570734e70c47c8bb6d658c1014f29068e106.zip CMake-4dc4570734e70c47c8bb6d658c1014f29068e106.tar.gz CMake-4dc4570734e70c47c8bb6d658c1014f29068e106.tar.bz2 |
cmMakefile: Fix indentation.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefile.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 44dfb8c..07c2fd1 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -4160,10 +4160,10 @@ void cmMakefile::SetProperty(const std::string& prop, const char* value) if (prop == "INCLUDE_DIRECTORIES") { this->IncludeDirectoriesEntries.clear(); - if (!value) - { - return; - } + if (!value) + { + return; + } cmListFileBacktrace lfbt = this->GetBacktrace(); this->IncludeDirectoriesEntries.push_back( cmValueWithOrigin(value, lfbt)); @@ -4172,10 +4172,10 @@ void cmMakefile::SetProperty(const std::string& prop, const char* value) if (prop == "COMPILE_OPTIONS") { this->CompileOptionsEntries.clear(); - if (!value) - { - return; - } + if (!value) + { + return; + } cmListFileBacktrace lfbt = this->GetBacktrace(); this->CompileOptionsEntries.push_back(cmValueWithOrigin(value, lfbt)); return; |