From 69dbc727502d322cf7fed1abe231b4f0848ef6ae Mon Sep 17 00:00:00 2001 From: David Wells Date: Fri, 15 Dec 2017 13:05:49 -0500 Subject: [PATCH] Improve some method descriptions. --- include/deal.II/lac/vector_memory.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 -- 2.39.5