ERR: Run should return a value

This commit is contained in:
Andy Cedilnik 2003-04-30 07:32:30 -04:00
parent b216ced444
commit 2b0f71f100

View File

@ -120,7 +120,7 @@ class cmake
* Handle a command line invocation of cmake.
*/
int Run(const std::vector<std::string>&args)
{ this->Run(args, false); }
{ return this->Run(args, false); }
int Run(const std::vector<std::string>&args, bool noconfigure);
/**