From 7e540f5e1be58a2230c1ed2f96253ffb942a4ea8 Mon Sep 17 00:00:00 2001 From: Boris Gubenko Date: Tue, 18 Nov 2008 17:41:32 +0000 Subject: [PATCH] extend workaround to icc 10.0 [SVN r49827] --- include/boost/gil/planar_pixel_reference.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/gil/planar_pixel_reference.hpp b/include/boost/gil/planar_pixel_reference.hpp index 82ac93ed1..2d7184299 100644 --- a/include/boost/gil/planar_pixel_reference.hpp +++ b/include/boost/gil/planar_pixel_reference.hpp @@ -86,7 +86,7 @@ public: // "copy assignment operator"). // EDG implemented Core Issue 574 starting with EDG Version 3.8. I'm not // sure why they did it for a template member function as well. -#if BOOST_WORKAROUND(__HP_aCC, >= 61700) || BOOST_WORKAROUND(__INTEL_COMPILER, >= 1010) +#if BOOST_WORKAROUND(__HP_aCC, >= 61700) || BOOST_WORKAROUND(__INTEL_COMPILER, >= 1000) const planar_pixel_reference& operator=(const planar_pixel_reference& p) { static_copy(p,*this); return *this; } template const planar_pixel_reference& operator=(const P& p) { check_compatible

(); static_copy(p,*this); return *this; } #endif