diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-11-11 17:29:39 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-11-11 17:29:39 +0000 |
commit | a3f25f0fe80f181afd32ec2eb403514a8d7aa5b4 (patch) | |
tree | 8f854a283325c226e9755159c20b5b38705192ab /libstdc++-v3/libsupc++ | |
parent | 8091d0ba1125534c0bc6f41334a03a03c45d96f1 (diff) | |
download | gcc-a3f25f0fe80f181afd32ec2eb403514a8d7aa5b4.tar.gz |
* libsupc++/new_handler.cc: Fix for explicit constructor change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230184 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/libsupc++')
-rw-r--r-- | libstdc++-v3/libsupc++/new_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/libsupc++/new_handler.cc b/libstdc++-v3/libsupc++/new_handler.cc index a09012c8db4..4da48b3c21d 100644 --- a/libstdc++-v3/libsupc++/new_handler.cc +++ b/libstdc++-v3/libsupc++/new_handler.cc @@ -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 |