Browse Source

cmAddCustomCommandCommand: remove unnecessary braces

Ben Boeckel 5 years ago
parent
commit
a5f44ec925
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/cmAddCustomCommandCommand.cxx

+ 2 - 2
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;