diff options
author | Alexander Neundorf <neundorf@kde.org> | 2008-09-07 10:52:06 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2008-09-07 10:52:06 (GMT) |
commit | c2cc88343093ee65c6fe610f19c91435ec29527e (patch) | |
tree | 03b42553fd6868c21f48f6824313f985d0deff88 /Source/cmFindPackageCommand.h | |
parent | aeaae298bed53324bb61fae67a576510e25d602d (diff) | |
download | CMake-c2cc88343093ee65c6fe610f19c91435ec29527e.zip CMake-c2cc88343093ee65c6fe610f19c91435ec29527e.tar.gz CMake-c2cc88343093ee65c6fe610f19c91435ec29527e.tar.bz2 |
COMP: fix compile warning/error (non-void function returning void)
Alex
Diffstat (limited to 'Source/cmFindPackageCommand.h')
-rw-r--r-- | Source/cmFindPackageCommand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindPackageCommand.h b/Source/cmFindPackageCommand.h index 398d6a9..cf27965 100644 --- a/Source/cmFindPackageCommand.h +++ b/Source/cmFindPackageCommand.h @@ -73,7 +73,7 @@ public: private: void AppendSuccessInformation(); void AppendToProperty(const char* propertyName); - bool SetModuleVariables(const std::string& components); + void SetModuleVariables(const std::string& components); bool FindModule(bool& found); bool HandlePackageMode(); void FindConfig(); |