From: oliver Date: Fri, 16 Dec 2005 17:19:53 +0000 (+0000) Subject: Removed the constness from the array which is used to initialise the X-Git-Tag: v8.0.0~12775 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9792d9b3be0f8caf4c2b609523cedbad6c206aee;p=dealii.git 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 --- 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}};