Silenced clang warnings about unused arguments.

This commit is contained in:
Andrey Semashev
2014-06-15 01:19:43 +04:00
parent 95ad3ede45
commit 3f5eb44685

View File

@ -189,12 +189,12 @@ template<class T> BOOST_FORCEINLINE reference_wrapper<T const> BOOST_REF_CONST c
/**
@remark Construction from a temporary object is disabled.
*/
template<class T> void ref(T const&& t) BOOST_REF_DELETE;
template<class T> void ref(T const&&) BOOST_REF_DELETE;
/**
@remark Construction from a temporary object is disabled.
*/
template<class T> void cref(T const&& t) BOOST_REF_DELETE;
template<class T> void cref(T const&&) BOOST_REF_DELETE;
#undef BOOST_REF_DELETE