From 6d17f5ee05eb3e1164a690d66402b4ddb3b23c2a Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 29 Dec 2014 20:20:11 -0600 Subject: [PATCH] Reindent a few lines. --- examples/step-29/step-29.cc | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/examples/step-29/step-29.cc b/examples/step-29/step-29.cc index 4ec76769ec..4624ef675a 100644 --- a/examples/step-29/step-29.cc +++ b/examples/step-29/step-29.cc @@ -1,6 +1,6 @@ /* --------------------------------------------------------------------- * - * Copyright (C) 2007 - 2013 by the deal.II authors + * Copyright (C) 2007 - 2014 by the deal.II authors * * This file is part of the deal.II library. * @@ -299,12 +299,12 @@ namespace Step29 virtual void - compute_derived_quantities_vector (const std::vector< Vector< double > > &uh, - const std::vector< std::vector< Tensor< 1, dim > > > &duh, - const std::vector< std::vector< Tensor< 2, dim > > > &dduh, - const std::vector< Point< dim > > &normals, - const std::vector > &evaluation_points, - std::vector< Vector< double > > &computed_quantities) const; + compute_derived_quantities_vector (const std::vector > &uh, + const std::vector > > &duh, + const std::vector > > &dduh, + const std::vector > &normals, + const std::vector > &evaluation_points, + std::vector > &computed_quantities) const; }; // In the constructor, we need to call the constructor of the base class @@ -346,12 +346,12 @@ namespace Step29 template void ComputeIntensity::compute_derived_quantities_vector ( - const std::vector< Vector< double > > &uh, - const std::vector< std::vector< Tensor< 1, dim > > > & /*duh*/, - const std::vector< std::vector< Tensor< 2, dim > > > & /*dduh*/, - const std::vector< Point< dim > > & /*normals*/, - const std::vector > & /*evaluation_points*/, - std::vector< Vector< double > > &computed_quantities + const std::vector > &uh, + const std::vector > > & /*duh*/, + const std::vector > > & /*dduh*/, + const std::vector > & /*normals*/, + const std::vector > & /*evaluation_points*/, + std::vector > &computed_quantities ) const { Assert(computed_quantities.size() == uh.size(), -- 2.39.5