From 1a6adedd61a8b888e18451a4daf19fac7c3445a7 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 11 May 2015 07:54:56 -0500 Subject: [PATCH] Remove some outdated comments. --- include/deal.II/lac/matrix_out.h | 36 ++------------------------------ 1 file changed, 2 insertions(+), 34 deletions(-) diff --git a/include/deal.II/lac/matrix_out.h b/include/deal.II/lac/matrix_out.h index a7c7a6e0ff..00f21e256b 100644 --- a/include/deal.II/lac/matrix_out.h +++ b/include/deal.II/lac/matrix_out.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2001 - 2014 by the deal.II authors +// Copyright (C) 2001 - 2015 by the deal.II authors // // This file is part of the deal.II library. // @@ -57,32 +57,6 @@ DEAL_II_NAMESPACE_OPEN * these flags. * * - *

Internals

- * - * To avoid a compiler error in Sun's Forte compiler, we derive privately from - * DataOutBase. Since the base class DataOutInterface does so as well, this - * does no harm, but calms the compiler which is suspecting an access control - * conflict otherwise. Testcase here: - * @code - * template class V {}; - * - * struct B1 { - * template struct X { - * int i[dim]; - * }; - * }; - * - * struct B2 : private B1 {}; - * - * struct D : public B2, private B1 { - * ~D () {}; - * typedef B1::X<2> X; - * V x; - * }; - * - * D d; - * @endcode - * * @ingroup output * @author Wolfgang Bangerth, 2001 */ @@ -163,14 +137,8 @@ private: /** * Abbreviate the somewhat lengthy name for the dealii::DataOutBase::Patch * class. - * - * Note that we have to indicate the global scope in front of DataOutBase, - * since otherwise the C++ rules specify that this here indicates the - * DataOutBase base class of this class. Since that is a private base class, - * we cannot access its members, and so access to the local Patch type would - * be forbidden. */ - typedef dealii::DataOutBase::Patch<2,2> Patch; + typedef DataOutBase::Patch<2,2> Patch; /** * This is a list of patches that is created each time build_patches() is -- 2.39.5