Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/gpl3/gcc/dist/libstdc++-v3/include/bits Merge r1632...
details: https://anonhg.NetBSD.org/src/rev/58fd7a15306c
branches: trunk
changeset: 782606:58fd7a15306c
user: joerg <joerg%NetBSD.org@localhost>
date: Thu Nov 08 18:13:53 2012 +0000
description:
Merge r163231 from upstream to fix xulrunner build with Clang.
diffstat:
external/gpl3/gcc/dist/libstdc++-v3/include/bits/stl_queue.h | 23 +-----------
1 files changed, 1 insertions(+), 22 deletions(-)
diffs (46 lines):
diff -r 69c6280ffc2e -r 58fd7a15306c external/gpl3/gcc/dist/libstdc++-v3/include/bits/stl_queue.h
--- a/external/gpl3/gcc/dist/libstdc++-v3/include/bits/stl_queue.h Thu Nov 08 18:04:56 2012 +0000
+++ b/external/gpl3/gcc/dist/libstdc++-v3/include/bits/stl_queue.h Thu Nov 08 18:13:53 2012 +0000
@@ -1,6 +1,6 @@
// Queue implementation -*- C++ -*-
-// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@@ -137,16 +137,6 @@
explicit
queue(_Sequence&& __c = _Sequence())
: c(std::move(__c)) { }
-
- queue(queue&& __q)
- : c(std::move(__q.c)) { }
-
- queue&
- operator=(queue&& __q)
- {
- c = std::move(__q.c);
- return *this;
- }
#endif
/**
@@ -451,17 +441,6 @@
c.insert(c.end(), __first, __last);
std::make_heap(c.begin(), c.end(), comp);
}
-
- priority_queue(priority_queue&& __pq)
- : c(std::move(__pq.c)), comp(std::move(__pq.comp)) { }
-
- priority_queue&
- operator=(priority_queue&& __pq)
- {
- c = std::move(__pq.c);
- comp = std::move(__pq.comp);
- return *this;
- }
#endif
/**
Home |
Main Index |
Thread Index |
Old Index