$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r81974 - sandbox-branches/geometry/index/boost/geometry/extensions/index
From: adam.wulkiewicz_at_[hidden]
Date: 2012-12-15 11:42:56
Author: awulkiew
Date: 2012-12-15 11:42:56 EST (Sat, 15 Dec 2012)
New Revision: 81974
URL: http://svn.boost.org/trac/boost/changeset/81974
Log:
Fixed gcc compiler errors.
Text files modified: 
   sandbox-branches/geometry/index/boost/geometry/extensions/index/static_vector.hpp |     8 ++++----                                
   1 files changed, 4 insertions(+), 4 deletions(-)
Modified: sandbox-branches/geometry/index/boost/geometry/extensions/index/static_vector.hpp
==============================================================================
--- sandbox-branches/geometry/index/boost/geometry/extensions/index/static_vector.hpp	(original)
+++ sandbox-branches/geometry/index/boost/geometry/extensions/index/static_vector.hpp	2012-12-15 11:42:56 EST (Sat, 15 Dec 2012)
@@ -371,8 +371,8 @@
 
     // uninitialized_copy
 
-    template <typename Value>
-    void uninitialized_copy(Value const& v, iterator dst)
+    template <typename V>
+    void uninitialized_copy(V const& v, iterator dst)
     {
         typedef typename
             mpl::and_<
@@ -390,8 +390,8 @@
         ::memcpy(ptr, &v, sizeof(value_type));
     }
 
-    template <typename Value>
-    void uninitialized_copy_dispatch(Value const& v, value_type * ptr,
+    template <typename V>
+    void uninitialized_copy_dispatch(V const& v, value_type * ptr,
                                      boost::mpl::bool_<false> const& /*use_memcpy*/)
     {
         new (ptr) value_type(v);                                                    // may throw