COMP: fix compile warning/error (non-void function returning void)
Alex
This commit is contained in:
parent
aeaae298be
commit
c2cc883430
|
@ -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";
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue