ENDIF()
-#
-# gcc-4.8.1 has some problems with the constexpr "vertices_per_cell" in the
-# definition of alternating_form_at_vertices.
-#
-# TODO: Write a unit test.
-#
-# For now, just enable the workaround for Windows targets
-#
-# - Matthias Maier, 2013
-#
-IF( CMAKE_SYSTEM_NAME MATCHES "CYGWIN"
- OR CMAKE_SYSTEM_NAME MATCHES "Windows" )
- SET(DEAL_II_CONSTEXPR_BUG TRUE)
-ENDIF()
-
-
#
# Intel 16.0.1 produces wrong code that creates a race condition in
# tests/fe/curl_curl_01.debug but 16.0.2 is known to work. Blacklist this
template <int spacedim>
static void
alternating_form_at_vertices
-#ifndef DEAL_II_CONSTEXPR_BUG
+#ifndef DEAL_II_CXX14_CONSTEXPR_BUG
(const Point<spacedim> (&vertices)[vertices_per_cell],
Tensor<spacedim - dim, spacedim> (&forms)[vertices_per_cell]);
#else
template <int spacedim>
inline void
GeometryInfo<dim>::alternating_form_at_vertices
-# ifndef DEAL_II_CONSTEXPR_BUG
+# ifndef DEAL_II_CXX14_CONSTEXPR_BUG
(const Point<spacedim> (&vertices)[vertices_per_cell],
Tensor<spacedim - dim, spacedim> (&forms)[vertices_per_cell])
# else
template void
GeometryInfo<1>::alternating_form_at_vertices
-#ifndef DEAL_II_CONSTEXPR_BUG
+#ifndef DEAL_II_CXX14_CONSTEXPR_BUG
(const Point<1> (&)[vertices_per_cell],
Tensor<1 - 1, 1> (&)[vertices_per_cell])
#else
template void
GeometryInfo<1>::alternating_form_at_vertices
-#ifndef DEAL_II_CONSTEXPR_BUG
+#ifndef DEAL_II_CXX14_CONSTEXPR_BUG
(const Point<2> (&)[vertices_per_cell],
Tensor<2 - 1, 2> (&)[vertices_per_cell])
#else
template void
GeometryInfo<2>::alternating_form_at_vertices
-#ifndef DEAL_II_CONSTEXPR_BUG
+#ifndef DEAL_II_CXX14_CONSTEXPR_BUG
(const Point<2> (&vertices)[vertices_per_cell],
Tensor<2 - 2, 2> (&forms)[vertices_per_cell])
#else
template void
GeometryInfo<2>::alternating_form_at_vertices
-#ifndef DEAL_II_CONSTEXPR_BUG
+#ifndef DEAL_II_CXX14_CONSTEXPR_BUG
(const Point<3> (&vertices)[vertices_per_cell],
Tensor<3 - 2, 3> (&forms)[vertices_per_cell])
#else
template void
GeometryInfo<3>::alternating_form_at_vertices
-#ifndef DEAL_II_CONSTEXPR_BUG
+#ifndef DEAL_II_CXX14_CONSTEXPR_BUG
(const Point<3> (&vertices)[vertices_per_cell],
Tensor<3 - 3, 3> (&forms)[vertices_per_cell])
#else