From 374c3765ef81716ba5d318387559bc9f671aaedd Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 21 Aug 2017 16:29:07 -0600 Subject: [PATCH] Avoid a warning with gcc 4.8. GCC 4.8 warns about an 'unused argument' for constructors marked '=default'. This is annoying, but easily worked around. --- include/deal.II/hp/fe_collection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/hp/fe_collection.h b/include/deal.II/hp/fe_collection.h index 6ed435e74d..ac93a440f7 100644 --- a/include/deal.II/hp/fe_collection.h +++ b/include/deal.II/hp/fe_collection.h @@ -87,7 +87,7 @@ namespace hp /** * Copy constructor. */ - FECollection (const FECollection &fe_collection) = default; + FECollection (const FECollection &) = default; /** * Move constructor. -- 2.39.5