From 77b18c65e7c21195bc08349942ecfcd9cf6327be Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 18 Jul 2014 23:57:02 +0000 Subject: [PATCH] Remove functions that are not needed (and didn't do anything on top of that). git-svn-id: https://svn.dealii.org/trunk@33198 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/grid/grid_reordering.cc | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/deal.II/source/grid/grid_reordering.cc b/deal.II/source/grid/grid_reordering.cc index 07dcf6c947..1091387cc5 100644 --- a/deal.II/source/grid/grid_reordering.cc +++ b/deal.II/source/grid/grid_reordering.cc @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2000 - 2013 by the deal.II authors +// Copyright (C) 2000 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -621,7 +621,7 @@ namespace internal namespace { /** - * A set of three functions that + * A set of functions that * reorder the data from the * "current" to the "classic" * format of vertex numbering of @@ -629,14 +629,6 @@ namespace * do the reordering of their * arguments in-place. */ - void - reorder_new_to_old_style (const std::vector > &) - { - // nothing to do here: the format - // hasn't changed for 1d - } - - void reorder_new_to_old_style (std::vector > &cells) { @@ -662,14 +654,6 @@ namespace /** * And now also in the opposite direction. */ - void - reorder_old_to_new_style (const std::vector > &) - { - // nothing to do here: the format - // hasn't changed for 1d - } - - void reorder_old_to_new_style (std::vector > &cells) { -- 2.39.5