Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r69059 - trunk/libs/geometry/test/test_geometries
From: barend.gehrels_at_[hidden]
Date: 2011-02-19 09:41:23


Author: barendgehrels
Date: 2011-02-19 09:41:22 EST (Sat, 19 Feb 2011)
New Revision: 69059
URL: http://svn.boost.org/trac/boost/changeset/69059

Log:
Selected other solution for mutable container, now having metafunction rvalue_type (adapted/reverted test geometries)
Text files modified:
   trunk/libs/geometry/test/test_geometries/all_custom_container.hpp | 6 +++---
   trunk/libs/geometry/test/test_geometries/all_custom_linestring.hpp | 6 +++---
   trunk/libs/geometry/test/test_geometries/all_custom_ring.hpp | 6 +++---
   trunk/libs/geometry/test/test_geometries/wrapped_boost_array.hpp | 6 +++---
   4 files changed, 12 insertions(+), 12 deletions(-)

Modified: trunk/libs/geometry/test/test_geometries/all_custom_container.hpp
==============================================================================
--- trunk/libs/geometry/test/test_geometries/all_custom_container.hpp (original)
+++ trunk/libs/geometry/test/test_geometries/all_custom_container.hpp 2011-02-19 09:41:22 EST (Sat, 19 Feb 2011)
@@ -43,7 +43,7 @@
 namespace traits
 {
     template <typename Item>
- struct clear<all_custom_container<Item>& >
+ struct clear<all_custom_container<Item> >
     {
         static inline void apply(all_custom_container<Item>& container)
         {
@@ -52,7 +52,7 @@
     };
 
     template <typename Item>
- struct push_back<all_custom_container<Item>& >
+ struct push_back<all_custom_container<Item> >
     {
         static inline void apply(all_custom_container<Item>& container, Item const& item)
         {
@@ -61,7 +61,7 @@
     };
 
     template <typename Item>
- struct resize<all_custom_container<Item>& >
+ struct resize<all_custom_container<Item> >
     {
         static inline void apply(all_custom_container<Item>& container, std::size_t new_size)
         {

Modified: trunk/libs/geometry/test/test_geometries/all_custom_linestring.hpp
==============================================================================
--- trunk/libs/geometry/test/test_geometries/all_custom_linestring.hpp (original)
+++ trunk/libs/geometry/test/test_geometries/all_custom_linestring.hpp 2011-02-19 09:41:22 EST (Sat, 19 Feb 2011)
@@ -43,7 +43,7 @@
     // conforming std:: functionality)
 
     template <typename Point>
- struct clear<all_custom_linestring<Point>& >
+ struct clear<all_custom_linestring<Point> >
     {
         static inline void apply(all_custom_linestring<Point>& als)
         {
@@ -52,7 +52,7 @@
     };
 
     template <typename Point>
- struct push_back<all_custom_linestring<Point>& >
+ struct push_back<all_custom_linestring<Point> >
     {
         static inline void apply(all_custom_linestring<Point>& als, Point const& point)
         {
@@ -61,7 +61,7 @@
     };
 
     template <typename Point>
- struct resize<all_custom_linestring<Point>& >
+ struct resize<all_custom_linestring<Point> >
     {
         static inline void apply(all_custom_linestring<Point>& als, std::size_t new_size)
         {

Modified: trunk/libs/geometry/test/test_geometries/all_custom_ring.hpp
==============================================================================
--- trunk/libs/geometry/test/test_geometries/all_custom_ring.hpp (original)
+++ trunk/libs/geometry/test/test_geometries/all_custom_ring.hpp 2011-02-19 09:41:22 EST (Sat, 19 Feb 2011)
@@ -48,7 +48,7 @@
     // conforming std:: functionality)
 
     template <typename Point>
- struct clear<all_custom_ring<Point>& >
+ struct clear<all_custom_ring<Point> >
     {
         static inline void apply(all_custom_ring<Point>& acr)
         {
@@ -57,7 +57,7 @@
     };
 
     template <typename Point>
- struct push_back<all_custom_ring<Point>& >
+ struct push_back<all_custom_ring<Point> >
     {
         static inline void apply(all_custom_ring<Point>& acr, Point const& point)
         {
@@ -66,7 +66,7 @@
     };
 
     template <typename Point>
- struct resize<all_custom_ring<Point>& >
+ struct resize<all_custom_ring<Point> >
     {
         static inline void apply(all_custom_ring<Point>& acr, std::size_t new_size)
         {

Modified: trunk/libs/geometry/test/test_geometries/wrapped_boost_array.hpp
==============================================================================
--- trunk/libs/geometry/test/test_geometries/wrapped_boost_array.hpp (original)
+++ trunk/libs/geometry/test/test_geometries/wrapped_boost_array.hpp 2011-02-19 09:41:22 EST (Sat, 19 Feb 2011)
@@ -115,7 +115,7 @@
     };
 
     template <typename Point, std::size_t Count>
- struct clear< wrapped_boost_array<Point, Count>& >
+ struct clear< wrapped_boost_array<Point, Count> >
     {
         static inline void apply(wrapped_boost_array<Point, Count>& ar)
         {
@@ -124,7 +124,7 @@
     };
 
     template <typename Point, std::size_t Count>
- struct push_back< wrapped_boost_array<Point, Count>& >
+ struct push_back< wrapped_boost_array<Point, Count> >
     {
         static inline void apply(wrapped_boost_array<Point, Count>& ar, Point const& point)
         {
@@ -134,7 +134,7 @@
     };
 
     template <typename Point, std::size_t Count>
- struct resize< wrapped_boost_array<Point, Count>& >
+ struct resize< wrapped_boost_array<Point, Count> >
     {
         static inline void apply(wrapped_boost_array<Point, Count>& ar, std::size_t new_size)
         {


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk