// ---------------------------------------------------------------------
// $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.
//
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
* do the reordering of their
* arguments in-place.
*/
- void
- reorder_new_to_old_style (const std::vector<CellData<1> > &)
- {
- // nothing to do here: the format
- // hasn't changed for 1d
- }
-
-
void
reorder_new_to_old_style (std::vector<CellData<2> > &cells)
{
/**
* And now also in the opposite direction.
*/
- void
- reorder_old_to_new_style (const std::vector<CellData<1> > &)
- {
- // nothing to do here: the format
- // hasn't changed for 1d
- }
-
-
void
reorder_old_to_new_style (std::vector<CellData<2> > &cells)
{