From 274a88dae5f4dc43eab0e44f927abee3de7b2650 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 6 Dec 2013 04:12:23 +0000 Subject: [PATCH] Add a couple of previously missing specializations. git-svn-id: https://svn.dealii.org/trunk@31906 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/grid/grid_reordering.cc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/deal.II/source/grid/grid_reordering.cc b/deal.II/source/grid/grid_reordering.cc index 9903f8255b..59d187df34 100644 --- a/deal.II/source/grid/grid_reordering.cc +++ b/deal.II/source/grid/grid_reordering.cc @@ -65,6 +65,24 @@ GridReordering<1,2>::invert_all_cells_of_negative_grid(const std::vector +void +GridReordering<1,3>::reorder_cells (std::vector > &) +{ + // there should not be much to do + // in 1d... +} + + +template<> +void +GridReordering<1,3>::invert_all_cells_of_negative_grid(const std::vector > &, + std::vector > &) +{ + // nothing to be done in 1d +} + + namespace internal { namespace GridReordering2d -- 2.39.5