From d1b05bdffb7c373548269841d7a6762274034be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sat, 29 Sep 2018 09:59:57 +0200 Subject: [PATCH] Remove unused parameter warnings in operator ==/!= --- test/expand_bwd_test_allocator.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/expand_bwd_test_allocator.hpp b/test/expand_bwd_test_allocator.hpp index de59cca..7124c57 100644 --- a/test/expand_bwd_test_allocator.hpp +++ b/test/expand_bwd_test_allocator.hpp @@ -173,14 +173,14 @@ class expand_bwd_test_allocator //!Equality test for same type of expand_bwd_test_allocator template inline -bool operator==(const expand_bwd_test_allocator &alloc1, - const expand_bwd_test_allocator &alloc2) +bool operator==(const expand_bwd_test_allocator &, + const expand_bwd_test_allocator &) { return false; } //!Inequality test for same type of expand_bwd_test_allocator template inline -bool operator!=(const expand_bwd_test_allocator &alloc1, - const expand_bwd_test_allocator &alloc2) +bool operator!=(const expand_bwd_test_allocator &, + const expand_bwd_test_allocator &) { return true; } } //namespace test {