diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-03-26 21:45:52 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-03-26 21:45:52 (GMT) |
commit | 437a8c98165f4b19745ba0ffcd455171a58a1e8b (patch) | |
tree | e8cba5a39f3f8ba0606739a96f16af04283d322f /Source/cmFunctionBlocker.h | |
parent | ccbdc30a8c9c1f763efecf19a0f15f1d1b43e74f (diff) | |
download | CMake-437a8c98165f4b19745ba0ffcd455171a58a1e8b.zip CMake-437a8c98165f4b19745ba0ffcd455171a58a1e8b.tar.gz CMake-437a8c98165f4b19745ba0ffcd455171a58a1e8b.tar.bz2 |
FIX: foreach function-blockers were using expanded args. Add virtual func to specify if function blocker needs them expanded or not.
Diffstat (limited to 'Source/cmFunctionBlocker.h')
-rw-r--r-- | Source/cmFunctionBlocker.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmFunctionBlocker.h b/Source/cmFunctionBlocker.h index 2432dab..ab6f09d 100644 --- a/Source/cmFunctionBlocker.h +++ b/Source/cmFunctionBlocker.h @@ -50,6 +50,8 @@ public: virtual void ScopeEnded(cmMakefile &mf) {} virtual ~cmFunctionBlocker() {} + + virtual int NeedExpandedVariables () { return 1; }; }; #endif |