From: David Wells Date: Mon, 11 May 2020 14:12:57 +0000 (-0400) Subject: Remove some "dealii::"s from code examples. X-Git-Tag: v9.2.0-rc1~31^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10135%2Fhead;p=dealii.git Remove some "dealii::"s from code examples. These are converted to "::" by our doxygen preprocessing script, which looks weird. --- diff --git a/include/deal.II/lac/packaged_operation.h b/include/deal.II/lac/packaged_operation.h index 1c51bdfeb3..af149fc6c6 100644 --- a/include/deal.II/lac/packaged_operation.h +++ b/include/deal.II/lac/packaged_operation.h @@ -63,33 +63,33 @@ class PackagedOperation; * * As an example consider the addition of multiple vectors * @code - * dealii::Vector a, b, c, d; + * Vector a, b, c, d; * // .. - * dealii::Vector result = a + b - c + d; + * Vector result = a + b - c + d; * @endcode * or the computation of a residual $b-Ax$: * @code - * dealii::SparseMatrix A; - * dealii::Vector b, x; + * SparseMatrix A; + * Vector b, x; * // .. * const auto op_a = linear_operator(A); * - * dealii::Vector residual = b - op_a * x; + * auto residual = b - op_a * x; * @endcode * The expression residual is of type - * PackagedOperation>. It stores + * PackagedOperation>. It stores * references to A, b and x and defers * the actual computation until apply, or apply_add * are explicitly invoked, * @code - * dealii::Vector y; + * Vector y; * residual.reinit_vector(y); * residual.apply(y); * residual.apply_add(y); * @endcode * or until the @p PackagedOperation object is implicitly converted: * @code - * dealii::Vector y; + * Vector y; * y = residual; * y += residual; * y -= residual;