COMP: fix warnings
This commit is contained in:
parent
c1467ff991
commit
3bf92ad4b4
|
@ -152,6 +152,10 @@ bool cmGetPropertyCommand::InitialPass(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case cmProperty::VARIABLE:
|
||||||
|
case cmProperty::CACHED_VARIABLE:
|
||||||
|
// not handled by GetProperty
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
this->Makefile->AddDefinition(args[0].c_str(), output.c_str());
|
this->Makefile->AddDefinition(args[0].c_str(), output.c_str());
|
||||||
|
|
|
@ -199,6 +199,10 @@ bool cmSetPropertiesCommand::InitialPass(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case cmProperty::VARIABLE:
|
||||||
|
case cmProperty::CACHED_VARIABLE:
|
||||||
|
// not handled by SetProperty
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue