From: Timo Heister Date: Tue, 22 Dec 2015 20:19:21 +0000 (-0500) Subject: remove remaining references to NamedData X-Git-Tag: v8.4.0-rc2~127^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f88233637a18d84b3c45da76195f3a75927b1400;p=dealii.git remove remaining references to NamedData --- diff --git a/include/deal.II/algorithms/any_data.h b/include/deal.II/algorithms/any_data.h index b4f9a43fe5..33bd563221 100644 --- a/include/deal.II/algorithms/any_data.h +++ b/include/deal.II/algorithms/any_data.h @@ -30,8 +30,7 @@ DEAL_II_NAMESPACE_OPEN /** * Store any amount of any type of data accessible by an identifier string. * - * @todo Deprecate access by index after NamedData has been deprecated for - * long enough, then change to a map. + * @todo GK: Deprecate access to AnyData by index and change to a map. */ class AnyData : public Subscriptor @@ -183,7 +182,7 @@ public: /** * Exception indicating that a function expected a vector to have a certain - * name, but NamedData had a different name in that position. + * name, but we store a different name in that position. */ DeclException2(ExcNameMismatch, int, std::string, << "Name at position " << arg1 << " is not equal to " << arg2); diff --git a/include/deal.II/algorithms/named_selection.h b/include/deal.II/algorithms/named_selection.h index c426e396b1..8e5b25571a 100644 --- a/include/deal.II/algorithms/named_selection.h +++ b/include/deal.II/algorithms/named_selection.h @@ -37,7 +37,7 @@ class NamedSelection public: /** - * Add a new name to be searched for in NamedData. + * Add a new name to be searched for in @p data supplied in initialize(). * * @note Names will be added to the end of the current list. */ diff --git a/include/deal.II/algorithms/newton.h b/include/deal.II/algorithms/newton.h index a58d1a9516..efdc7d8b29 100644 --- a/include/deal.II/algorithms/newton.h +++ b/include/deal.II/algorithms/newton.h @@ -53,7 +53,7 @@ namespace Algorithms * objects. All vectors of in are forwarded to the inner Operator * objects, with additional information added as follows. * - * When calling (*#residual)(), the NamedData in given to the + * When calling (*#residual)(), the AnyData in given to the * Newton iteration is prepended by a vector "Newton iterate", the * current value of the Newton iterate, which can be used to evaluate the * residual at this point.