mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 15:20:56 -06:00
cmMakefile::RaiseScope: Add support for cmValue argument
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user