$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: lbourdev_at_[hidden]
Date: 2008-03-20 00:27:44
Author: lbourdev
Date: 2008-03-20 00:27:41 EDT (Thu, 20 Mar 2008)
New Revision: 43735
URL: http://svn.boost.org/trac/boost/changeset/43735
Log:
GIL: Changed a private type name to differ from #define used on some Linux systems.
Text files modified: 
   trunk/boost/gil/gil_concept.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/gil/gil_concept.hpp
==============================================================================
--- trunk/boost/gil/gil_concept.hpp	(original)
+++ trunk/boost/gil/gil_concept.hpp	2008-03-20 00:27:41 EDT (Thu, 20 Mar 2008)
@@ -702,8 +702,8 @@
         typedef typename kth_element_type<ColorBase,num_elements-1>::type TN; 
 
         BOOST_STATIC_ASSERT((is_same<T0,TN>::value));   // better than nothing
-        typedef typename kth_element_const_reference_type<ColorBase,0>::type CR0; 
-        CR0 e0=dynamic_at_c(cb,0);
+        typedef typename kth_element_const_reference_type<ColorBase,0>::type CRef0; 
+        CRef0 e0=dynamic_at_c(cb,0);
     }
     ColorBase cb;
 };