From 57c000f8eb76875e62e1e4b657494c5a7e3ac206 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Tue, 14 Apr 2020 10:42:15 +0200 Subject: [PATCH] Avoid unused parameter warnings --- include/turtle/detail/mutex.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/turtle/detail/mutex.hpp b/include/turtle/detail/mutex.hpp index 18ae0a5..b5dcb35 100644 --- a/include/turtle/detail/mutex.hpp +++ b/include/turtle/detail/mutex.hpp @@ -103,9 +103,9 @@ namespace detail {} ~lock() {} - lock( BOOST_RV_REF( lock ) x ) + lock( BOOST_RV_REF( lock ) ) {} - lock& operator=( BOOST_RV_REF( lock ) x ) + lock& operator=( BOOST_RV_REF( lock ) ) { return *this; }