aboutsummaryrefslogtreecommitdiff
path: root/tools/mhmake/src/mhmakefileparser.cpp
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-11-01 15:42:39 +0000
committermarha <marha@users.sourceforge.net>2010-11-01 15:42:39 +0000
commitc3d55347b14c80f553ab8c487baded1a44acf68c (patch)
treec2f8ea3bfe70d8d3cde803fd854879b44e2c4f4e /tools/mhmake/src/mhmakefileparser.cpp
parent6ed6717dee7a472ae12f3f0e3c526c68425da8e7 (diff)
downloadvcxsrv-c3d55347b14c80f553ab8c487baded1a44acf68c.tar.gz
vcxsrv-c3d55347b14c80f553ab8c487baded1a44acf68c.tar.bz2
vcxsrv-c3d55347b14c80f553ab8c487baded1a44acf68c.zip
Implemented foreach function.
wildcard can now have multiple arguments
Diffstat (limited to 'tools/mhmake/src/mhmakefileparser.cpp')
-rw-r--r--tools/mhmake/src/mhmakefileparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mhmake/src/mhmakefileparser.cpp b/tools/mhmake/src/mhmakefileparser.cpp
index a2d4537a0..38c5cd3ac 100644
--- a/tools/mhmake/src/mhmakefileparser.cpp
+++ b/tools/mhmake/src/mhmakefileparser.cpp
@@ -288,7 +288,7 @@ string mhmakefileparser::ExpandMacro(const string &Expr, bool &Recurse) const
#ifdef _DEBUG
if (pFunc)
{
- return (this->*pFunc)(Arg);
+ return (this->*pFunc)(Arg, &Expr);
}
else
{