From 310ec6f28d69fc545a2f769ceed36c61d7e56c7f Mon Sep 17 00:00:00 2001 From: Lubomir Bourdev Date: Thu, 20 Mar 2008 04:27:41 +0000 Subject: [PATCH] GIL: Changed a private type name to differ from #define used on some Linux systems. [SVN r43735] --- include/boost/gil/gil_concept.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/gil/gil_concept.hpp b/include/boost/gil/gil_concept.hpp index 9b3e82504..720cf05e3 100644 --- a/include/boost/gil/gil_concept.hpp +++ b/include/boost/gil/gil_concept.hpp @@ -702,8 +702,8 @@ struct HomogeneousColorBaseConcept { typedef typename kth_element_type::type TN; BOOST_STATIC_ASSERT((is_same::value)); // better than nothing - typedef typename kth_element_const_reference_type::type CR0; - CR0 e0=dynamic_at_c(cb,0); + typedef typename kth_element_const_reference_type::type CRef0; + CRef0 e0=dynamic_at_c(cb,0); } ColorBase cb; };