summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/tr1/array
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/include/tr1/array')
-rw-r--r--libstdc++-v3/include/tr1/array6
1 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/include/tr1/array b/libstdc++-v3/include/tr1/array
index 3a1ff4caa8c..058fcfad60e 100644
--- a/libstdc++-v3/include/tr1/array
+++ b/libstdc++-v3/include/tr1/array
@@ -34,10 +34,12 @@
#include <bits/stl_algobase.h>
-namespace std
+namespace std _GLIBCXX_VISIBILITY(default)
{
namespace tr1
{
+_GLIBCXX_BEGIN_NAMESPACE_VERSION
+
/**
* @brief A standard container for storing a fixed size sequence of elements.
*
@@ -242,6 +244,8 @@ namespace tr1
inline const _Tp&
get(const array<_Tp, _Nm>& __arr)
{ return __arr[_Int]; }
+
+_GLIBCXX_END_NAMESPACE_VERSION
}
}