diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2021-04-25 12:22:09 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2021-04-28 17:44:25 (GMT) |
commit | 46896d98bb8ed8a1068da70220581f8bbc3847fc (patch) | |
tree | 690472b077e8863afabc0647e909b52a8e32f02d /Source/cmMakefile.h | |
parent | 49c6d0f26199c252b493ed5f816dbcb2e9701112 (diff) | |
download | CMake-46896d98bb8ed8a1068da70220581f8bbc3847fc.zip CMake-46896d98bb8ed8a1068da70220581f8bbc3847fc.tar.gz CMake-46896d98bb8ed8a1068da70220581f8bbc3847fc.tar.bz2 |
foreach(): loop variables are only available in the loop scope
Fixes: #20553
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 71d765c..3c07808 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -486,6 +486,7 @@ public: const std::string& GetSafeDefinition(const std::string&) const; const std::string& GetRequiredDefinition(const std::string& name) const; bool IsDefinitionSet(const std::string&) const; + bool IsNormalDefinitionSet(const std::string&) const; bool GetDefExpandList(const std::string& name, std::vector<std::string>& out, bool emptyArgs = false) const; /** |