diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-17 14:19:55 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-19 20:36:53 (GMT) |
commit | b9f9915516c9b426f4f528bb1ec5a79d115e21ab (patch) | |
tree | 5d98678c6cd4a92171909c14883d623decf39c30 /Source/cmMakefile.h | |
parent | 2b09d9f346bd3220b059771a6da1bafb06ce0f5b (diff) | |
download | CMake-b9f9915516c9b426f4f528bb1ec5a79d115e21ab.zip CMake-b9f9915516c9b426f4f528bb1ec5a79d115e21ab.tar.gz CMake-b9f9915516c9b426f4f528bb1ec5a79d115e21ab.tar.bz2 |
cmMakefile: Remove VarUsageStack.
Store usage information in the cmDefintions value instead. We already
pay for the memory as padding in the Def struct, so we might as well
use it.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index a8873ff..efd73a1 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -69,8 +69,6 @@ public: void MarkVariableAsUsed(const std::string& var); /* return true if a variable has been initialized */ bool VariableInitialized(const std::string& ) const; - /* return true if a variable has been used */ - bool VariableUsed(const std::string& ) const; /** * Construct an empty makefile. |