From f973cf2e09827e8883f607cbbcae2018e86a4b63 Mon Sep 17 00:00:00 2001 From: Lubomir Bourdev Date: Mon, 14 Jan 2008 22:06:07 +0000 Subject: [PATCH] Changed size_t to std::size_t [SVN r42780] --- include/boost/gil/color_base.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/gil/color_base.hpp b/include/boost/gil/color_base.hpp index 1441d4a69..aa416b053 100644 --- a/include/boost/gil/color_base.hpp +++ b/include/boost/gil/color_base.hpp @@ -5,7 +5,7 @@ Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt). - See http://opensource.adobe.com/gil for most recent version including documentation. + See http://stlab.adobe.com/gil for most recent version including documentation. */ /*************************************************************************************************/ @@ -182,7 +182,7 @@ public: _v2(*memunit_advanced(semantic_at_c<2>(ptr),diff)) {} // Support for planar_pixel_reference operator[] - Element at_c_dynamic(size_t i) const { + Element at_c_dynamic(std::size_t i) const { switch (i) { case 0: return _v0; case 1: return _v1;