diff options
author | Brad King <brad.king@kitware.com> | 2002-06-18 21:20:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-06-18 21:20:27 (GMT) |
commit | 28895b0f9f83d52f7a4e412888f93f0dd1920f76 (patch) | |
tree | 3ecfd16930f5b282d7837e93c0a71ce42a3cca1c /Source/cmEnableTestingCommand.h | |
parent | 55f3a3817e2879ad988df4473490823f803025d6 (diff) | |
download | CMake-28895b0f9f83d52f7a4e412888f93f0dd1920f76.zip CMake-28895b0f9f83d52f7a4e412888f93f0dd1920f76.tar.gz CMake-28895b0f9f83d52f7a4e412888f93f0dd1920f76.tar.bz2 |
ERR: Fixed compiler warnings.
Diffstat (limited to 'Source/cmEnableTestingCommand.h')
-rw-r--r-- | Source/cmEnableTestingCommand.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmEnableTestingCommand.h b/Source/cmEnableTestingCommand.h index 47fe0a8..54297bb 100644 --- a/Source/cmEnableTestingCommand.h +++ b/Source/cmEnableTestingCommand.h @@ -54,8 +54,7 @@ public: * This is called when the command is first encountered in * the CMakeLists.txt file. */ - virtual bool InitialPass(std::vector<std::string> const& args) { - return true;}; + virtual bool InitialPass(std::vector<std::string> const&) {return true;} /** * This is called at the end after all the information |