summaryrefslogtreecommitdiff
path: root/Source/cmFunctionBlocker.h
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-03-26 16:45:52 -0500
committerSebastien Barre <sebastien.barre@kitware.com>2002-03-26 16:45:52 -0500
commit437a8c98165f4b19745ba0ffcd455171a58a1e8b (patch)
treee8cba5a39f3f8ba0606739a96f16af04283d322f /Source/cmFunctionBlocker.h
parentccbdc30a8c9c1f763efecf19a0f15f1d1b43e74f (diff)
downloadcmake-437a8c98165f4b19745ba0ffcd455171a58a1e8b.tar.gz
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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmFunctionBlocker.h b/Source/cmFunctionBlocker.h
index 2432dab8d4..ab6f09dc35 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