From: David Wells Date: Fri, 15 Dec 2017 18:05:49 +0000 (-0500) Subject: Improve some method descriptions. X-Git-Tag: v9.0.0-rc1~655^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69dbc727502d322cf7fed1abe231b4f0848ef6ae;p=dealii.git Improve some method descriptions. --- diff --git a/include/deal.II/lac/vector_memory.h b/include/deal.II/lac/vector_memory.h index 1afe9e3564..2784ecb4db 100644 --- a/include/deal.II/lac/vector_memory.h +++ b/include/deal.II/lac/vector_memory.h @@ -197,16 +197,16 @@ public: Pointer() = default; /** - * Move constructor. This operator steals the pointer to the vector - * represented by this object from the one give as argument. + * Move constructor: this creates a new Pointer by stealing the internal + * data owned by @p p. */ - Pointer(Pointer &&) = default; + Pointer(Pointer &&p) = default; /** - * Move operator. This operator steals the pointer to the vector - * represented by this object from the one give as argument. + * Move operator: this releases the vector owned by the current Pointer + * and then steals the internal data owned by @p p. */ - Pointer &operator = (Pointer &&) = default; + Pointer &operator = (Pointer &&p) = default; /** * Constructor. This constructor automatically allocates a vector from