// ---------------------------------------------------------------------
//
-// Copyright (C) 1999 - 2015 by the deal.II authors
+// Copyright (C) 1999 - 2016 by the deal.II authors
//
// This file is part of the deal.II library.
//
#ifdef DEAL_II_WITH_CXX11
/**
* Move constructor. Creates a new vector by stealing the internal data of
- * the vector @p v.
+ * the given argument vector.
*
* @note This constructor is only available if deal.II is configured with
* C++11 support.
*/
- BlockVector (BlockVector<Number> &&v) = default;
+ BlockVector (BlockVector<Number> &&/*v*/) = default;
#endif
#ifdef DEAL_II_WITH_CXX11
/**
- * Move the given vector. This operator replaces the present vector with @p
- * v by efficiently swapping the internal data structures.
+ * Move the given vector. This operator replaces the present vector with
+ * the contents of the given argument vector.
*
* @note This operator is only available if deal.II is configured with C++11
* support.
*/
- BlockVector<Number> &operator= (BlockVector<Number> &&v) = default;
+ BlockVector<Number> &operator= (BlockVector<Number> &&/*v*/) = default;
#endif
/**
// ---------------------------------------------------------------------
//
-// Copyright (C) 2004 - 2015 by the deal.II authors
+// Copyright (C) 2004 - 2016 by the deal.II authors
//
// This file is part of the deal.II library.
//
BlockVectorBase (const BlockVectorBase &V) = default;
/**
- * Move constructor. Each block of the vector @p V is moved into the current
+ * Move constructor. Each block of the argument vector is moved into the current
* object if the underlying <code>VectorType</code> is move-constructible,
* otherwise they are copied.
*
* @note This constructor is only available if deal.II is configured with
* C++11 support.
*/
- BlockVectorBase (BlockVectorBase &&V) = default;
+ BlockVectorBase (BlockVectorBase &&/*V*/) = default;
#endif
/**
#ifdef DEAL_II_WITH_CXX11
/**
- * Move assignment operator. Move each block of the vector @p V into the
- * current object if `VectorType` is move-constructible, otherwise copy them.
+ * Move assignment operator. Move each block of the given argument
+ * vector into the current object if `VectorType` is
+ * move-constructible, otherwise copy them.
*/
- BlockVectorBase &operator= (BlockVectorBase &&V) = default;
+ BlockVectorBase &operator= (BlockVectorBase &&/*V*/) = default;
#endif
/**