diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-04-30 11:32:30 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-04-30 11:32:30 (GMT) |
commit | 2b0f71f10010de3e8fe5ca16c0b60cc9196c501a (patch) | |
tree | eb498958dc9d7e07272bc438082da3a3c171401d /Source/cmake.h | |
parent | b216ced4445426f1f95af26d5b21b9d8067bfee3 (diff) | |
download | CMake-2b0f71f10010de3e8fe5ca16c0b60cc9196c501a.zip CMake-2b0f71f10010de3e8fe5ca16c0b60cc9196c501a.tar.gz CMake-2b0f71f10010de3e8fe5ca16c0b60cc9196c501a.tar.bz2 |
ERR: Run should return a value
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 376a71d..53f2b07 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -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); /** |