summaryrefslogtreecommitdiffstats
path: root/Source/cmAddCustomCommandCommand.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2019-12-18 14:49:54 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2019-12-18 14:50:15 (GMT)
commita5f44ec92558e229cf6927b321f5f7903af8b412 (patch)
tree4875e1c26ab948afeb2a59997a49590cbe5d084f /Source/cmAddCustomCommandCommand.cxx
parent89f30e9e1f6d4d896d05d6535337bf73d6824a12 (diff)
downloadCMake-a5f44ec92558e229cf6927b321f5f7903af8b412.zip
CMake-a5f44ec92558e229cf6927b321f5f7903af8b412.tar.gz
CMake-a5f44ec92558e229cf6927b321f5f7903af8b412.tar.bz2
cmAddCustomCommandCommand: remove unnecessary braces
Diffstat (limited to 'Source/cmAddCustomCommandCommand.cxx')
-rw-r--r--Source/cmAddCustomCommandCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmAddCustomCommandCommand.cxx b/Source/cmAddCustomCommandCommand.cxx
index 52fc5d5..995088c 100644
--- a/Source/cmAddCustomCommandCommand.cxx
+++ b/Source/cmAddCustomCommandCommand.cxx
@@ -261,9 +261,9 @@ bool cmAddCustomCommandCommand(std::vector<std::string> const& args,
case doing_target:
target = copy;
break;
- case doing_depends: {
+ case doing_depends:
depends.push_back(copy);
- } break;
+ break;
case doing_outputs:
outputs.push_back(filename);
break;