diff options
author | Matthias Maennich <matthias@maennich.net> | 2017-09-20 21:53:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-09-28 11:23:43 (GMT) |
commit | 77f674be35717a6eb296246733885b5a7ddf95ec (patch) | |
tree | 308de087b0babb7799c8c99c4352faa158969012 /Source/cmXCodeObject.cxx | |
parent | f0bab294dcd3f2c4f3be5e491426b5eefb2a9aba (diff) | |
download | CMake-77f674be35717a6eb296246733885b5a7ddf95ec.zip CMake-77f674be35717a6eb296246733885b5a7ddf95ec.tar.gz CMake-77f674be35717a6eb296246733885b5a7ddf95ec.tar.bz2 |
Fix some occurrences of readability-braces-around-statements
Fix issues diagnosed by clang-tidy [readability-braces-around-statements]
Signed-off-by: Matthias Maennich <matthias@maennich.net>
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r-- | Source/cmXCodeObject.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx index e0ed445..e54f1f3 100644 --- a/Source/cmXCodeObject.cxx +++ b/Source/cmXCodeObject.cxx @@ -120,8 +120,9 @@ void cmXCodeObject::Print(std::ostream& out) out << "isa = " << PBXTypeNames[this->IsA] << ";" << separator; for (i = this->ObjectAttributes.begin(); i != this->ObjectAttributes.end(); ++i) { - if (i->first == "isa") + if (i->first == "isa") { continue; + } PrintAttribute(out, 3, separator, indentFactor, i->first, i->second, this); } |