|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r81255 - trunk/boost/test/utils
From: jhunold_at_[hidden]
Date: 2012-11-08 15:34:05
Author: jhunold
Date: 2012-11-08 15:34:04 EST (Thu, 08 Nov 2012)
New Revision: 81255
URL: http://svn.boost.org/trac/boost/changeset/81255
Log:
Fix: gcc-4.7.2: error: â>>â should be â> >â within a nested template argument list
gcc supports the angle bracket hat in c++11 only
Text files modified:
trunk/boost/test/utils/is_forward_iterable.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/test/utils/is_forward_iterable.hpp
==============================================================================
--- trunk/boost/test/utils/is_forward_iterable.hpp (original)
+++ trunk/boost/test/utils/is_forward_iterable.hpp 2012-11-08 15:34:04 EST (Thu, 08 Nov 2012)
@@ -55,10 +55,10 @@
struct is_forward_iterable<T&> : is_forward_iterable<T> {};
template<typename T>
-struct is_forward_iterable<std::vector<T>> : mpl::true_ {};
+struct is_forward_iterable<std::vector<T> > : mpl::true_ {};
template<typename T>
-struct is_forward_iterable<std::list<T>> : mpl::true_ {};
+struct is_forward_iterable<std::list<T> > : mpl::true_ {};
#else
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