diff options
author | Joe Seymour <jseymour@codesourcery.com> | 2012-10-06 08:39:13 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2012-10-06 08:39:13 +0000 |
commit | d6a5e81d74f9c17f0de3f5ab1a9c817381eec7e8 (patch) | |
tree | 7c9086ebebaa9400df976756c291c06aee6aea64 | |
parent | 8f937c1892a07fca6aae0b8259062590bd61101c (diff) | |
download | gcc-d6a5e81d74f9c17f0de3f5ab1a9c817381eec7e8.zip gcc-d6a5e81d74f9c17f0de3f5ab1a9c817381eec7e8.tar.gz gcc-d6a5e81d74f9c17f0de3f5ab1a9c817381eec7e8.tar.bz2 |
dynamic_bitset: Fix cxxabi_forced.h include path.
2012-10-06 Joe Seymour <jseymour@codesourcery.com>
* include/tr2/dynamic_bitset: Fix cxxabi_forced.h include path.
From-SVN: r192154
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/tr2/dynamic_bitset | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index c651247..2dee02e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2012-10-06 Joe Seymour <jseymour@codesourcery.com> + + * include/tr2/dynamic_bitset: Fix cxxabi_forced.h include path. + 2012-10-05 Benjamin Kosnik <bkoz@redhat.com> * testsuite/28_regex/algorithms/match: Rename to... diff --git a/libstdc++-v3/include/tr2/dynamic_bitset b/libstdc++-v3/include/tr2/dynamic_bitset index 5ca5647..53b696f 100644 --- a/libstdc++-v3/include/tr2/dynamic_bitset +++ b/libstdc++-v3/include/tr2/dynamic_bitset @@ -1,6 +1,6 @@ // TR2 <dynamic_bitset> -*- C++ -*- -// Copyright (C) 2009, 2010, 2011, 2012 Free Software Foundation, Inc. +// Copyright (C) 2009-2012 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 @@ -39,7 +39,7 @@ #include <bits/functexcept.h> // For invalid_argument, out_of_range, // overflow_error #include <iosfwd> -#include <cxxabi_forced.h> +#include <bits/cxxabi_forced.h> namespace std _GLIBCXX_VISIBILITY(default) { |