* with the UCD numbering, this field can also be used like a
* old_to_lexicographic mapping.
*/
- static constexpr std::array<unsigned int, vertices_per_cell> ucd_to_deal {{0}};
+ static const std::array<unsigned int, vertices_per_cell> ucd_to_deal;
/**
* Rearrange vertices for OpenDX output. For a cell being written in OpenDX
* out << cell->vertex(dx_to_deal[i]);
* @endcode
*/
- static constexpr std::array<unsigned int, vertices_per_cell> dx_to_deal {{0}};
+ static const std::array<unsigned int, vertices_per_cell> dx_to_deal;
};
constexpr std::array<unsigned int, GeometryInfo<dim>::vertices_per_cell>
GeometryInfo<dim>::ucd_to_deal;
-constexpr std::array<unsigned int, GeometryInfo<0>::vertices_per_cell>
-GeometryInfo<0>::ucd_to_deal;
-
-constexpr std::array<unsigned int, GeometryInfo<0>::vertices_per_cell>
-GeometryInfo<0>::dx_to_deal;
+const std::array<unsigned int, GeometryInfo<0>::vertices_per_cell>
+GeometryInfo<0>::ucd_to_deal = {{0}};
+const std::array<unsigned int, GeometryInfo<0>::vertices_per_cell>
+GeometryInfo<0>::dx_to_deal = {{0}};
template struct GeometryInfo<1>;
template struct GeometryInfo<2>;