summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/tr1/utility
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/include/tr1/utility')
-rw-r--r--libstdc++-v3/include/tr1/utility8
1 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/include/tr1/utility b/libstdc++-v3/include/tr1/utility
index 04ff67a3f8f..ef3673a44c3 100644
--- a/libstdc++-v3/include/tr1/utility
+++ b/libstdc++-v3/include/tr1/utility
@@ -1,6 +1,6 @@
// TR1 utility -*- C++ -*-
-// Copyright (C) 2004, 2005, 2006, 2007, 2008. 2009, 2010
+// Copyright (C) 2004, 2005, 2006, 2007, 2008. 2009, 2010, 2011
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
@@ -36,10 +36,12 @@
#include <bits/stl_relops.h>
#include <bits/stl_pair.h>
-namespace std
+namespace std _GLIBCXX_VISIBILITY(default)
{
namespace tr1
{
+_GLIBCXX_BEGIN_NAMESPACE_VERSION
+
template<class _Tp>
class tuple_size;
@@ -99,6 +101,8 @@ namespace tr1
inline const typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
get(const std::pair<_Tp1, _Tp2>& __in)
{ return __pair_get<_Int>::__const_get(__in); }
+
+_GLIBCXX_END_NAMESPACE_VERSION
}
}