COMP: fix compile warning/error (non-void function returning void)

Alex
This commit is contained in:
Alexander Neundorf 2008-09-07 06:52:06 -04:00
parent aeaae298be
commit c2cc883430
2 changed files with 2 additions and 2 deletions

View File

@ -533,7 +533,7 @@ bool cmFindPackageCommand
//----------------------------------------------------------------------------
bool cmFindPackageCommand::SetModuleVariables(const std::string& components)
void cmFindPackageCommand::SetModuleVariables(const std::string& components)
{
// Store the list of components.
std::string components_var = this->Name + "_FIND_COMPONENTS";

View File

@ -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();