comparison libstdc++-v3/libsupc++/guard_error.cc @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // Copyright (C) 2011-2018 Free Software Foundation, Inc. 1 // Copyright (C) 2011-2020 Free Software Foundation, Inc.
2 // 2 //
3 // This file is part of GCC. 3 // This file is part of GCC.
4 // 4 //
5 // GCC is free software; you can redistribute it and/or modify 5 // GCC is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by 6 // it under the terms of the GNU General Public License as published by
24 #include <bits/c++config.h> 24 #include <bits/c++config.h>
25 #include <cxxabi.h> 25 #include <cxxabi.h>
26 26
27 namespace __gnu_cxx 27 namespace __gnu_cxx
28 { 28 {
29 recursive_init_error::~recursive_init_error() throw() { } 29 recursive_init_error::recursive_init_error() noexcept { }
30 recursive_init_error::~recursive_init_error() noexcept { }
30 } 31 }
31