From: Wolfgang Bangerth Date: Tue, 13 Feb 2018 21:58:43 +0000 (-0700) Subject: Use std::uint8_t instead of 'unsigned char' for refinement flags. X-Git-Tag: v9.0.0-rc1~433^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0bdb49c683e0877b65fc2adba9d83e75d28d628f;p=dealii.git Use std::uint8_t instead of 'unsigned char' for refinement flags. --- diff --git a/include/deal.II/grid/tria_levels.h b/include/deal.II/grid/tria_levels.h index ea3d9ec3fd..b1a3c2feac 100644 --- a/include/deal.II/grid/tria_levels.h +++ b/include/deal.II/grid/tria_levels.h @@ -25,6 +25,8 @@ #include +#include + DEAL_II_NAMESPACE_OPEN namespace internal @@ -62,7 +64,7 @@ namespace internal * equals the length of the @p lines vector, in two dimensions that of * the @p quads vector, etc. */ - std::vector refine_flags; + std::vector refine_flags; /** * Same meaning as the one above, but specifies whether a cell must be @@ -216,7 +218,7 @@ namespace internal class TriaLevel<3> { public: - std::vector refine_flags; + std::vector refine_flags; std::vector coarsen_flags; std::vector active_cell_indices; std::vector > neighbors;