From ecc743a56f6645d1615e5e2681745d94bfe851f1 Mon Sep 17 00:00:00 2001 From: Markus Blatt <markus@dr-blatt.de> Date: Tue, 1 Sep 2015 15:49:50 +0200 Subject: [PATCH] Removes unused parameter warning in classname.hh This does not apply cleanly to the release. --- dune/common/classname.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/common/classname.hh b/dune/common/classname.hh index 57e0a9a21..936b062ac 100644 --- a/dune/common/classname.hh +++ b/dune/common/classname.hh @@ -46,7 +46,7 @@ namespace Dune { /** \brief Provide the demangled class name of a given object as a string */ template <class T> - std::string className ( T& t ) + std::string className ( T& ) { return className<T>(); } -- GitLab