From 9792d9b3be0f8caf4c2b609523cedbad6c206aee Mon Sep 17 00:00:00 2001 From: oliver Date: Fri, 16 Dec 2005 17:19:53 +0000 Subject: [PATCH] Removed the constness from the array which is used to initialise the test as gcc4.0.2 complained about this and it should not do any harm in other configurations. git-svn-id: https://svn.dealii.org/trunk@11871 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/subcelldata.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/deal.II/subcelldata.cc b/tests/deal.II/subcelldata.cc index 79a843f5c7..d85b4e3706 100644 --- a/tests/deal.II/subcelldata.cc +++ b/tests/deal.II/subcelldata.cc @@ -21,12 +21,12 @@ #include -static const unsigned subcells[6][4] = {{0, 1, 2, 3}, - {4, 5, 6, 7}, - {0, 1, 5, 4}, - {1, 5, 6, 2}, - {3, 2, 6, 7}, - {0, 4, 7, 3}}; +static unsigned subcells[6][4] = {{0, 1, 2, 3}, + {4, 5, 6, 7}, + {0, 1, 5, 4}, + {1, 5, 6, 2}, + {3, 2, 6, 7}, + {0, 4, 7, 3}}; -- 2.39.5