aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2012-05-02 16:22:06 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2012-05-02 16:22:06 +0000
commit63dc7fbee074066f132d5092e53e6d62757bb922 (patch)
tree6b5035e2eb11e6a5d5186ecbb4438764fd5828b4 /libstdc++-v3
parent5dcfdccd32b5b06a29caf45469203c67da526b41 (diff)
downloadgcc-63dc7fbee074066f132d5092e53e6d62757bb922.zip
gcc-63dc7fbee074066f132d5092e53e6d62757bb922.tar.gz
gcc-63dc7fbee074066f132d5092e53e6d62757bb922.tar.bz2
hashtable_policy.h: Correct namepace nesting for _Hashtable forward declaration.
2012-05-02 Benjamin Kosnik <bkoz@redhat.com> * include/bits/hashtable_policy.h: Correct namepace nesting for _Hashtable forward declaration. From-SVN: r187052
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/bits/hashtable_policy.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index f8f37a8..d0948f9 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-02 Benjamin Kosnik <bkoz@redhat.com>
+
+ * include/bits/hashtable_policy.h: Correct namepace nesting for
+ _Hashtable forward declaration.
+
2012-05-01 François Dumont <fdumont@gcc.gnu.org>
PR libstdc++/53115
diff --git a/libstdc++-v3/include/bits/hashtable_policy.h b/libstdc++-v3/include/bits/hashtable_policy.h
index 3b43510..a42d3d3 100644
--- a/libstdc++-v3/include/bits/hashtable_policy.h
+++ b/libstdc++-v3/include/bits/hashtable_policy.h
@@ -33,12 +33,16 @@
namespace std _GLIBCXX_VISIBILITY(default)
{
+_GLIBCXX_BEGIN_NAMESPACE_VERSION
+
template<typename _Key, typename _Value, typename _Alloc,
typename _ExtractKey, typename _Equal,
typename _H1, typename _H2, typename _Hash,
typename _RehashPolicy, typename _Traits>
class _Hashtable;
+_GLIBCXX_END_NAMESPACE_VERSION
+
namespace __detail
{
_GLIBCXX_BEGIN_NAMESPACE_VERSION