From 1681b3a3b938ca2c8d804c1db21828fd5cd99642 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Thu, 14 Apr 2011 07:53:57 +0000 Subject: [PATCH] [phoenix] fully qualifying eval in the hope that it fixes msvc 7.1 compilation [SVN r71241] --- include/boost/phoenix/scope/lambda.hpp | 2 +- include/boost/phoenix/scope/let.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/phoenix/scope/lambda.hpp b/include/boost/phoenix/scope/lambda.hpp index 7942608..b67484b 100644 --- a/include/boost/phoenix/scope/lambda.hpp +++ b/include/boost/phoenix/scope/lambda.hpp @@ -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))); } }; diff --git a/include/boost/phoenix/scope/let.hpp b/include/boost/phoenix/scope/let.hpp index 1dfcf78..435b0a1 100644 --- a/include/boost/phoenix/scope/let.hpp +++ b/include/boost/phoenix/scope/let.hpp @@ -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))); } };