diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-21 20:53:16 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-30 21:14:18 (GMT) |
commit | 0818737c851dce18a6da442ee73029b0de22ad56 (patch) | |
tree | 93f56b87f219e2e43eb5bfb81abdfb6739433287 /Source/cmMakefile.h | |
parent | dd7e42758d4874c087bbbc6ae062f36455f6d49c (diff) | |
download | CMake-0818737c851dce18a6da442ee73029b0de22ad56.zip CMake-0818737c851dce18a6da442ee73029b0de22ad56.tar.gz CMake-0818737c851dce18a6da442ee73029b0de22ad56.tar.bz2 |
cmMakefile: Make listfile scopes responsible for logical checks.
Remove the LexicalPushPop.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 64783e5..ebf33df 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -100,19 +100,6 @@ public: cmsys::auto_ptr<cmFunctionBlocker> RemoveFunctionBlocker(cmFunctionBlocker* fb, const cmListFileFunction& lff); - /** Push/pop a lexical (function blocker) barrier automatically. */ - class LexicalPushPop - { - public: - LexicalPushPop(cmMakefile* mf); - ~LexicalPushPop(); - void Quiet() { this->ReportError = false; } - private: - cmMakefile* Makefile; - bool ReportError; - }; - friend class LexicalPushPop; - /** * Try running cmake and building a file. This is used for dynalically * loaded commands, not as part of the usual build process. |