|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r71875 - trunk/libs/phoenix/example
From: thom.heller_at_[hidden]
Date: 2011-05-11 14:21:29
Author: theller
Date: 2011-05-11 14:21:29 EDT (Wed, 11 May 2011)
New Revision: 71875
URL: http://svn.boost.org/trac/boost/changeset/71875
Log:
[phoenix]
- little tweak in the invert example
Text files modified:
trunk/libs/phoenix/example/invert.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/libs/phoenix/example/invert.cpp
==============================================================================
--- trunk/libs/phoenix/example/invert.cpp (original)
+++ trunk/libs/phoenix/example/invert.cpp 2011-05-11 14:21:29 EDT (Wed, 11 May 2011)
@@ -83,7 +83,7 @@
phoenix::eval(
expr
, phoenix::context(
- int()
+ phoenix::nothing
, invert_actions()
)
)
@@ -95,7 +95,7 @@
typename
boost::phoenix::result_of::eval<
Expr const&
- , phoenix::result_of::context<boost::mpl::void_, invert_actions>::type
+ , phoenix::result_of::context<phoenix::nothing_type, invert_actions>::type
>::type
invert(Expr const & expr)
{
@@ -103,7 +103,7 @@
phoenix::eval(
expr
, phoenix::context(
- boost::mpl::void_()
+ phoenix::nothing
, invert_actions()
)
);
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk