This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Bug libstdc++/85845] [9 Regression] Many libstdc++ test failures


I just committed this patch as trivial.

I must have run tests without rebuilding pre-compiled headers. I'll have to find out how to build tests without pre-compiled headers to avoid it in the future.

François

On 20/05/2018 19:06, fdumont at gcc dot gnu.org wrote:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85845

François Dumont <fdumont at gcc dot gnu.org> changed:

            What    |Removed                     |Added
----------------------------------------------------------------------------
              Status|NEW                         |ASSIGNED
            Assignee|unassigned at gcc dot gnu.org      |fdumont at gcc dot gnu.org


Index: include/bits/stl_tree.h
===================================================================
--- include/bits/stl_tree.h	(revision 260477)
+++ include/bits/stl_tree.h	(working copy)
@@ -980,7 +980,7 @@
     public:
       _Rb_tree(_Rb_tree&& __x, _Node_allocator&& __a)
       noexcept( noexcept(
-	_Rb_tree(std::declval<_Rb_tree>(), std::declval<_Node_allocator>(),
+	_Rb_tree(std::declval<_Rb_tree&&>(), std::declval<_Node_allocator&&>(),
 		 std::declval<typename _Alloc_traits::is_always_equal>())) )
       : _Rb_tree(std::move(__x), std::move(__a),
 		 typename _Alloc_traits::is_always_equal{})

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]