From b8e533f7bec752ba09809072964e2d44c96ced32 Mon Sep 17 00:00:00 2001 From: Adam Wulkiewicz Date: Sun, 16 Dec 2012 22:00:22 +0000 Subject: [PATCH] static_vector size_t changed to std::size_t. [SVN r82035] --- .../boost/geometry/extensions/index/static_vector.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/boost/geometry/extensions/index/static_vector.hpp b/include/boost/geometry/extensions/index/static_vector.hpp index 1d7d74456..71994f5d4 100644 --- a/include/boost/geometry/extensions/index/static_vector.hpp +++ b/include/boost/geometry/extensions/index/static_vector.hpp @@ -6,6 +6,10 @@ // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) +#ifndef BOOST_GEOMETRY_EXTENSIONS_INDEX_STATIC_VECTOR_HPP +#define BOOST_GEOMETRY_EXTENSIONS_INDEX_STATIC_VECTOR_HPP + +#include #include #include @@ -26,9 +30,6 @@ #include -#ifndef BOOST_GEOMETRY_EXTENSIONS_INDEX_STATIC_VECTOR_HPP -#define BOOST_GEOMETRY_EXTENSIONS_INDEX_STATIC_VECTOR_HPP - namespace boost { namespace geometry { namespace index { template @@ -41,7 +42,7 @@ class static_vector public: typedef Value value_type; - typedef size_t size_type; + typedef std::size_t size_type; typedef Value& reference; typedef Value const& const_reference; typedef Value * pointer;