cmMakefile::RaiseScope: Add support for cmValue argument

This commit is contained in:
Marc Chevrier
2022-08-05 10:54:45 +02:00
parent 553da0685f
commit 3d94ee0e03

View File

@@ -862,6 +862,10 @@ public:
void PushScope();
void PopScope();
void RaiseScope(const std::string& var, const char* value);
void RaiseScope(const std::string& var, cmValue value)
{
this->RaiseScope(var, value.GetCStr());
}
// push and pop loop scopes
void PushLoopBlockBarrier();