<li>Mac OS X: GCC version 4.1 or later; Clang version 3.0 or later.
Please see the <a href="https://code.google.com/p/dealii/wiki/MacOSX"
target="_top">deal.II Wiki</a> for installation instructions.</li>
- <li>Windows: Cygwin64 with gcc-4.8.1 (Cygwin32 is not supported).
+ <li>Windows: Currently unsupported.
Please see the <a href="https://code.google.com/p/dealii/wiki/Windows"
target="_top">deal.II Wiki</a> for installation instructions.</li>
</li>
/**
* Number of vertices of a cell.
*/
-#ifdef DEAL_II_USE_CXX11
- // Workaround for some versions of gcc-4.8.1 (notably on Cygwin and Mac)
- // that incorrectly fail to deduce the second version as a constexpr
- static constexpr unsigned int vertices_per_cell = 1 << dim;
-#else
static const unsigned int vertices_per_cell = 1 << dim;
-#endif
/**
* Number of vertices on each
template <int dim> const unsigned int GeometryInfo<dim>::max_children_per_cell;
template <int dim> const unsigned int GeometryInfo<dim>::faces_per_cell;
template <int dim> const unsigned int GeometryInfo<dim>::max_children_per_face;
-#ifdef DEAL_II_USE_CXX11
- // Workaround for some versions of gcc-4.8.1 (notably on Cygwin and Mac)
- // that incorrectly fail to deduce the second version as a constexpr
- template <int dim> constexpr unsigned int GeometryInfo<dim>::vertices_per_cell;
-#else
- template <int dim> const unsigned int GeometryInfo<dim>::vertices_per_cell;
-#endif
+template <int dim> const unsigned int GeometryInfo<dim>::vertices_per_cell;
template <int dim> const unsigned int GeometryInfo<dim>::vertices_per_face;
template <int dim> const unsigned int GeometryInfo<dim>::lines_per_face;
template <int dim> const unsigned int GeometryInfo<dim>::quads_per_face;