2011-09-25 Paolo Carlini <paolo.carlini@oracle.com>
Revert (no longer necessary post r179130):
2010-04-27 Fabien ChĂȘne <fabien.chene@gmail.com>
* testsuite/util/testsuite_error.h: Add empty default constructor
to __gnu_test::test_category and
__gnu_test::test_derived_category.
* src/future.cc: Add empty default constructor to
future_error_category.
* src/system_error.cc: Add default ctor to generic_error_category
and system_error_category.
From-SVN: r179172
+2011-09-25 Paolo Carlini <paolo.carlini@oracle.com>
+
+ Revert (no longer necessary post r179130):
+
+ 2010-04-27 Fabien ChĂȘne <fabien.chene@gmail.com>
+
+ * testsuite/util/testsuite_error.h: Add empty default constructor
+ to __gnu_test::test_category and
+ __gnu_test::test_derived_category.
+ * src/future.cc: Add empty default constructor to
+ future_error_category.
+ * src/system_error.cc: Add default ctor to generic_error_category
+ and system_error_category.
+
2011-09-24 John Salmon <john.salmon@deshaw.com>
PR libstdc++/50510
{
struct future_error_category : public std::error_category
{
- future_error_category() noexcept {}
-
virtual const char*
name() const noexcept
{ return "future"; }
struct generic_error_category : public std::error_category
{
- generic_error_category() {}
-
virtual const char*
name() const noexcept
{ return "generic"; }
struct system_error_category : public std::error_category
{
- system_error_category() {}
-
virtual const char*
name() const noexcept
{ return "system"; }
{
struct test_category : public std::error_category
{
- test_category() {}
-
virtual const char*
name() const noexcept
{
struct test_derived_category : public test_category
{
- test_derived_category() {}
-
virtual const char*
name() const noexcept
{