summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/tr1/6_containers/array/element_access/data.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/testsuite/tr1/6_containers/array/element_access/data.cc')
-rw-r--r--libstdc++-v3/testsuite/tr1/6_containers/array/element_access/data.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/testsuite/tr1/6_containers/array/element_access/data.cc b/libstdc++-v3/testsuite/tr1/6_containers/array/element_access/data.cc
index 967290b0f13..a094c91d94e 100644
--- a/libstdc++-v3/testsuite/tr1/6_containers/array/element_access/data.cc
+++ b/libstdc++-v3/testsuite/tr1/6_containers/array/element_access/data.cc
@@ -23,13 +23,13 @@
#include <testsuite_hooks.h>
void
-test01()
-{
+test01()
+{
bool test __attribute__((unused)) = true;
const size_t len = 5;
typedef std::tr1::array<int, len> array_type;
-
+
{
array_type a = { { 0, 1, 2, 3, 4 } };
int* pi = a.data();