diff options
author | Brad King <brad.king@kitware.com> | 2015-06-23 13:08:18 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-06-23 13:08:18 (GMT) |
commit | 5ab7dd544e2d10bf6b05ab046a852b84eee63126 (patch) | |
tree | 4510d75270473d5a30865c4afdfabefa8584bcfd /Source/cmMakefile.h | |
parent | bddfe77d12ee7d6ecaa3c4fa8ade1c4c0cab5760 (diff) | |
parent | 5d85fb4f407cd661fb904f68e2c9cc27ddcc0331 (diff) | |
download | CMake-5ab7dd544e2d10bf6b05ab046a852b84eee63126.zip CMake-5ab7dd544e2d10bf6b05ab046a852b84eee63126.tar.gz CMake-5ab7dd544e2d10bf6b05ab046a852b84eee63126.tar.bz2 |
Merge topic 'fix-function-missing-end'
5d85fb4f Fix assertion failure on unmatched function or macro
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index b3ab273..85f117b 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -113,15 +113,6 @@ public: }; friend class LexicalPushPop; - class LoopBlockPop - { - public: - LoopBlockPop(cmMakefile* mf) { this->Makefile = mf; } - ~LoopBlockPop() { this->Makefile->PopLoopBlock(); } - private: - cmMakefile* Makefile; - }; - /** * Try running cmake and building a file. This is used for dynalically * loaded commands, not as part of the usual build process. |