// Copyright (c) 2014 Adam Wulkiewicz, Lodz, Poland. // // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_CORE_IGNORE_UNUSED_HPP #define BOOST_CORE_IGNORE_UNUSED_HPP #include namespace boost { #ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES template inline void ignore_unused(Ts const& ...) {} template inline void ignore_unused() {} #else template inline void ignore_unused(T1 const&) {} template inline void ignore_unused(T1 const&, T2 const&) {} template inline void ignore_unused(T1 const&, T2 const&, T3 const&) {} template inline void ignore_unused(T1 const&, T2 const&, T3 const&, T4 const&) {} template inline void ignore_unused(T1 const&, T2 const&, T3 const&, T4 const&, T5 const&) {} template inline void ignore_unused() {} template inline void ignore_unused() {} template inline void ignore_unused() {} template inline void ignore_unused() {} template inline void ignore_unused() {} #endif } // namespace boost #endif // BOOST_CORE_IGNORE_UNUSED_HPP