diff options
Diffstat (limited to 'Source/cmOptionCommand.cxx')
-rw-r--r-- | Source/cmOptionCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmOptionCommand.cxx b/Source/cmOptionCommand.cxx index 8c389f8..2a943b8 100644 --- a/Source/cmOptionCommand.cxx +++ b/Source/cmOptionCommand.cxx @@ -19,7 +19,7 @@ // cmOptionCommand bool cmOptionCommand::InitialPass(std::vector<std::string> const& args) { - if(args.size() < 2) + if(args.size() < 2 || args.size() > 3) { this->SetError("called with incorrect number of arguments"); return false; |