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/cmForEachCommand.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/cmForEachCommand.h')
-rw-r--r-- | Source/cmForEachCommand.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmForEachCommand.h b/Source/cmForEachCommand.h index 5026035..064e30b 100644 --- a/Source/cmForEachCommand.h +++ b/Source/cmForEachCommand.h @@ -39,6 +39,8 @@ public: cmMakefile &mf); virtual void ScopeEnded(cmMakefile &mf); + virtual int NeedExpandedVariables () { return 0; }; + std::vector<std::string> m_Args; std::vector<std::string> m_Commands; std::vector<std::vector<std::string> > m_CommandArguments; |