From b5f59858b945b97f276dfbd7557d4337e051dd75 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 1 Nov 2021 01:56:27 +0200 Subject: [PATCH] Avoid unused parameter warning in visit_each_test.cpp --- test/visit_each_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/visit_each_test.cpp b/test/visit_each_test.cpp index 726188e..a0da6be 100644 --- a/test/visit_each_test.cpp +++ b/test/visit_each_test.cpp @@ -34,7 +34,7 @@ struct V { } - template< class T > void operator()( T const & t ) + template< class T > void operator()( T const & /*t*/ ) { }