Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r77086 - trunk/boost
From: lorcaminiti_at_[hidden]
Date: 2012-02-20 21:21:52


Author: lcaminiti
Date: 2012-02-20 21:21:51 EST (Mon, 20 Feb 2012)
New Revision: 77086
URL: http://svn.boost.org/trac/boost/changeset/77086

Log:
Fixed a bug that was not defining SCOPE_EXIT_ALL when BOOST_NO_VARIADIC_MACROS is defined (because of a typo, SOPE_EXIT_AUX_LAMBDAS was used instead of SCOPE_EXIT_LAMBDAS_01).
Text files modified:
   trunk/boost/scope_exit.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/boost/scope_exit.hpp
==============================================================================
--- trunk/boost/scope_exit.hpp (original)
+++ trunk/boost/scope_exit.hpp 2012-02-20 21:21:51 EST (Mon, 20 Feb 2012)
@@ -573,7 +573,7 @@
 # define BOOST_SCOPE_EXIT_TPL(void_or_seq) \
             BOOST_SCOPE_EXIT(void_or_seq)
 # endif
-# if defined(BOOST_SCOPE_EXIT_AUX_LAMBDAS) /* C++11 only */
+# if BOOST_SCOPE_EXIT_AUX_LAMBDAS_01 /* C++11 only */
 # define BOOST_SCOPE_EXIT_ALL(seq) \
             BOOST_SCOPE_EXIT_AUX_IMPL( \
                   BOOST_LOCAL_FUNCTION_DETAIL_PP_LINE_COUNTER \


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