|
From: <pat...@us...> - 2010-03-19 13:07:59
|
Revision: 1253
http://ggt.svn.sourceforge.net/ggt/?rev=1253&view=rev
Author: patrickh
Date: 2010-03-19 13:07:52 +0000 (Fri, 19 Mar 2010)
Log Message:
-----------
Avoid namespace conflicts between the Boost.Lambda placeholders and the
boost::bind placeholders.
Submitted by: Doug McCorkle
Modified Paths:
--------------
trunk/gmtl/Misc/MatrixConvert.h
Modified: trunk/gmtl/Misc/MatrixConvert.h
===================================================================
--- trunk/gmtl/Misc/MatrixConvert.h 2010-01-02 17:13:17 UTC (rev 1252)
+++ trunk/gmtl/Misc/MatrixConvert.h 2010-03-19 13:07:52 UTC (rev 1253)
@@ -49,7 +49,7 @@
// This relies on implicit casting between data types.
boost::mpl::for_each< boost::mpl::range_c<unsigned int, 0, ROWS * COLS> >(
- *(out_data + _1) = *(in_data + _1)
+ *(out_data + boost::lambda::_1) = *(in_data + boost::lambda::_1)
);
return out;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|