From e6c70f3ce8244a1b494de01b231960c336b8fe87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carsten=20Gr=C3=A4ser?= <graeser@dune-project.org> Date: Mon, 1 Dec 2014 11:32:12 +0100 Subject: [PATCH] [cleanup] Avoid warning on unused typedef --- dune/common/test/utilitytest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/common/test/utilitytest.cc b/dune/common/test/utilitytest.cc index 57a4c146f..2bc6f6b87 100644 --- a/dune/common/test/utilitytest.cc +++ b/dune/common/test/utilitytest.cc @@ -100,7 +100,7 @@ int main(int, char**) PointerTuple1 p(new int(), new char(), new long(), new char()); - typedef Dune::ForEachType<Eval,PointerTuple1>::Type ConvertedType; + typedef Dune::ForEachType<Eval,PointerTuple1>::Type ConvertedType DUNE_UNUSED; Dune::PointerPairDeletor<PointerTuple1>::apply(p); return ret; -- GitLab