2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-15 01:12:09 +00:00

[phoenix] fully qualifying eval in the hope that it fixes msvc 7.1 compilation

[SVN r71241]
This commit is contained in:
Thomas Heller
2011-04-14 07:53:57 +00:00
parent 36055f654f
commit 1681b3a3b9
2 changed files with 2 additions and 2 deletions

View File

@@ -117,7 +117,7 @@ namespace boost { namespace phoenix
, proto::value(locals)
);
return eval(lambda, context(scoped_env, actions(ctx)));
return boost::phoenix::eval(lambda, context(scoped_env, actions(ctx)));
}
};

View File

@@ -103,7 +103,7 @@ namespace boost { namespace phoenix
, l
);
return eval(let, context(scoped_env, actions(ctx)));
return boost::phoenix::eval(let, context(scoped_env, actions(ctx)));
}
};