mirror of git://gcc.gnu.org/git/gcc.git
* libsupc++/new_handler.cc: Fix for explicit constructor change.
From-SVN: r230184
This commit is contained in:
parent
f55e699d3d
commit
c5bd8d521a
|
@ -1,5 +1,7 @@
|
|||
2015-11-11 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* libsupc++/new_handler.cc: Fix for explicit constructor change.
|
||||
|
||||
PR libstdc++/60421
|
||||
* include/std/thread (this_thread::sleep_for): Retry on EINTR.
|
||||
(this_thread::sleep_until): Retry if time not reached.
|
||||
|
|
|
@ -34,7 +34,7 @@ namespace
|
|||
}
|
||||
#endif
|
||||
|
||||
const std::nothrow_t std::nothrow = { };
|
||||
const std::nothrow_t std::nothrow = std::nothrow_t{ };
|
||||
|
||||
using std::new_handler;
|
||||
namespace
|
||||
|
|
Loading…
Reference in New Issue