Boost logo

Boost-Commit :

From: jmcintyre_at_[hidden]
Date: 2007-08-02 20:02:52


Author: jared
Date: 2007-08-02 20:02:51 EDT (Thu, 02 Aug 2007)
New Revision: 38409
URL: http://svn.boost.org/trac/boost/changeset/38409

Log:
fix gcc BOOST_GETTER
Text files modified:
   sandbox/pinhole/boost/pinhole/property_group.h | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/pinhole/boost/pinhole/property_group.h
==============================================================================
--- sandbox/pinhole/boost/pinhole/property_group.h (original)
+++ sandbox/pinhole/boost/pinhole/property_group.h 2007-08-02 20:02:51 EDT (Thu, 02 Aug 2007)
@@ -34,7 +34,7 @@
 #if defined(BOOST_MSVC) && (_MSC_VER > 1310)
     #define BOOST_GETTER(c) boost::bind(boost::mem_fn(c), this)
 #else
- #define BOOST_SETTER(c) boost::bind(c, this, _1)
+ #define BOOST_GETTER(c) boost::bind(c, this)
 #endif
 #define BOOST_ACTION(c) boost::bind(c, this)
 


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