From 3f5eb4468599095e59983704ae5f4f93a734c343 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sun, 15 Jun 2014 01:19:43 +0400 Subject: [PATCH] Silenced clang warnings about unused arguments. --- include/boost/core/ref.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/core/ref.hpp b/include/boost/core/ref.hpp index 8ae1140..d258c76 100644 --- a/include/boost/core/ref.hpp +++ b/include/boost/core/ref.hpp @@ -189,12 +189,12 @@ template BOOST_FORCEINLINE reference_wrapper BOOST_REF_CONST c /** @remark Construction from a temporary object is disabled. */ -template void ref(T const&& t) BOOST_REF_DELETE; +template void ref(T const&&) BOOST_REF_DELETE; /** @remark Construction from a temporary object is disabled. */ -template void cref(T const&& t) BOOST_REF_DELETE; +template void cref(T const&&) BOOST_REF_DELETE; #undef BOOST_REF_DELETE