+2008-04-10 Benjamin Kosnik <bkoz@redhat.com>
+
+ * include/std/tuple: Consistency check for include guard, doxygen
+ file markup.
+ * include/std/date_time: Same.
+ * include/std/type_traits: Same.
+ * include/std/regex: Same.
+ * include/std/array: Same.
+ * include/std/system_error: Same, add error_code ctor.
+
2008-04-07 Johannes Singler <singler@ira.uka.de>
- * include/parallel/multiway_merge.h:
- Moved decisions to compiletime instead of runtime.
- * include/parallel/losertree.h:
- Removed obsolete variants, added variant that uses pointers
- in the loser tree.
- * include/parallel/types.h:
- Remove obsolete settings options from enum.
- * include/parallel/features.h:
- Remove obsolete compile-time switches.
- * include/parallel/compiletime_settings.h:
- Remove obsolete variant that copies back *after* sorting.
- * include/parallel/tags.h:
- Add one new tag for compile-time switch.
- * include/parallel/merge.h:
- Adapt to changes in multiway_merge.h.
- * include/parallel/multiway_mergesort.h:
- Adapt to changes in multiway_merge.h.
- Factor out splitting variants.
- Remove obsolete variant that copies back *after* sorting.
- * include/parallel/sort.h:
- Adapt to changes in multiway_mergesort.h.
- * testsuite/25_algorithms/sort/35588.cc:
- Added test case from / for PR 35588.
+ * include/parallel/multiway_merge.h: Moved decisions to
+ compile-time instead of run-time.
+ * include/parallel/losertree.h: Removed obsolete variants, added
+ variant that uses pointers in the loser tree.
+ * include/parallel/types.h: Remove obsolete settings options from enum.
+ * include/parallel/features.h: Remove obsolete compile-time switches.
+ * include/parallel/compiletime_settings.h: Remove obsolete variant
+ that copies back *after* sorting.
+ * include/parallel/tags.h: Add one new tag for compile-time switch.
+ * include/parallel/merge.h: Adapt to changes in multiway_merge.h.
+ * include/parallel/multiway_mergesort.h: Adapt to changes in
+ multiway_merge.h. Factor out splitting variants. Remove obsolete
+ variant that copies back *after* sorting.
+ * include/parallel/sort.h: Adapt to changes in multiway_mergesort.h.
+ * testsuite/25_algorithms/sort/35588.cc: Added test case from /
+ for PR 35588.
2008-03-29 Paolo Carlini <pcarlini@suse.de>
// <system_error> -*- C++ -*-
-// Copyright (C) 2007 Free Software Foundation, Inc.
+// Copyright (C) 2007, 2008 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// invalidate any other reasons why the executable file might be covered by
// the GNU General Public License.
-/** @file include/system_error
+/** @file system_error
* This is a Standard C++ Library header.
*/
error_code _M_code;
public:
+ system_error(error_code __ec = error_code())
+ : runtime_error(""), _M_code(__ec) { }
+
system_error(const string& __what, error_code __ec = error_code())
: runtime_error(__what), _M_code(__ec) { }
* This is a Standard C++ Library header.
*/
-#ifndef _GLIBCXX_CXX0X_TYPE_TRAITS
-#define _GLIBCXX_CXX0X_TYPE_TRAITS 1
+#ifndef _GLIBCXX_TYPE_TRAITS
+#define _GLIBCXX_TYPE_TRAITS 1
#pragma GCC system_header
-#ifndef __GXX_EXPERIMENTAL_CXX0X__
+#ifndef __GXX_EXPERIMENTAL__
# include <c++0x_warning.h>
#endif
struct make_signed<bool>;
}
-#endif // _GLIBCXX_CXX0X_TYPE_TRAITS
+#endif // _GLIBCXX_TYPE_TRAITS