From: Wolfgang Bangerth Date: Tue, 10 Apr 2001 22:55:48 +0000 (+0000) Subject: Micro doc change. X-Git-Tag: v8.0.0~19359 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cb2a029ee3ee8f07245bfd0d95163c2ec25fa08;p=dealii.git Micro doc change. git-svn-id: https://svn.dealii.org/trunk@4425 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/function.h b/deal.II/base/include/base/function.h index 509d8fc88d..d7b4011226 100644 --- a/deal.II/base/include/base/function.h +++ b/deal.II/base/include/base/function.h @@ -507,6 +507,7 @@ class ConstantFunction : public ZeroFunction * It is especially useful as a weight function for * @p{VectorTools::integrate_difference}, where it allows to integrate * only one component. + * * @author Guido Kanschat, 2000 */ template @@ -520,7 +521,7 @@ class ComponentSelectFunction : public ConstantFunction * number of components. */ ComponentSelectFunction (const unsigned int selected, - const double value, + const double value, const unsigned int n_components); /** @@ -562,6 +563,9 @@ class ComponentSelectFunction : public ConstantFunction unsigned int memory_consumption () const; protected: + /** + * Index of the selected component. + */ const unsigned int selected; };