diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-09-20 18:56:49 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-09-20 18:56:49 +0000 |
commit | 85539c8c262c0c9e227c87fd1de02c53c163b7d8 (patch) | |
tree | b6f96899ca745c157a6de93ad27013416976fc06 /src/stringprocbuild.h | |
parent | 5a32418a040e967887aa6e01e41abc22932471db (diff) | |
download | build-85539c8c262c0c9e227c87fd1de02c53c163b7d8.tar.gz build-85539c8c262c0c9e227c87fd1de02c53c163b7d8.tar.bz2 build-85539c8c262c0c9e227c87fd1de02c53c163b7d8.tar.xz build-85539c8c262c0c9e227c87fd1de02c53c163b7d8.zip |
Changed the api for variable replacement contexts. There can now be multiple
levels of contextual inheritance, so now sub-targets automatically get their
parent target's context variables, if they need them.
Diffstat (limited to '')
-rw-r--r-- | src/stringprocbuild.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stringprocbuild.h b/src/stringprocbuild.h index d940507..f3cf3b4 100644 --- a/src/stringprocbuild.h +++ b/src/stringprocbuild.h | |||
@@ -11,7 +11,7 @@ public: | |||
11 | StringProcBuild( Build *pBld ); | 11 | StringProcBuild( Build *pBld ); |
12 | virtual ~StringProcBuild(); | 12 | virtual ~StringProcBuild(); |
13 | 13 | ||
14 | virtual std::string replVars( const std::string &sSrc, const std::string &sCont, VarMap *mExtra ); | 14 | virtual std::string replVars( const std::string &sSrc, const StringList *pCont, VarMap *mExtra ); |
15 | 15 | ||
16 | private: | 16 | private: |
17 | 17 | ||