From e3f8c2a9e7ed530437a71ece0d5caeb5c556d3bd Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Tue, 24 Apr 2018 17:53:16 +0200 Subject: [PATCH] Remove parameter names for defaulted member functions --- include/deal.II/hp/fe_collection.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/hp/fe_collection.h b/include/deal.II/hp/fe_collection.h index 4e61a92555..4751b4efcf 100644 --- a/include/deal.II/hp/fe_collection.h +++ b/include/deal.II/hp/fe_collection.h @@ -92,13 +92,13 @@ namespace hp /** * Move constructor. */ - FECollection (FECollection &&fe_collection) noexcept = default; + FECollection (FECollection &&) noexcept = default; /** * Move assignment operator. */ FECollection & - operator= (FECollection &&fe_collection) = default; // NOLINT + operator= (FECollection &&) = default; // NOLINT /** * Add a finite element. This function generates a copy of the given -- 2.39.5