| 1 | // Boost Lambda Library suppress_unused.hpp ----------------------------- |
| 2 | // |
| 3 | // Copyright (C) 2009 Steven Watanabe |
| 4 | // |
| 5 | // Distributed under the Boost Software License, Version 1.0. (See |
| 6 | // accompanying file LICENSE_1_0.txt or copy at |
| 7 | // http://www.boost.org/LICENSE_1_0.txt) |
| 8 | // |
| 9 | // For more information, see www.boost.org |
| 10 | |
| 11 | // ------------------------------------------------------------ |
| 12 | |
| 13 | #ifndef BOOST_LAMBDA_SUPPRESS_UNUSED_HPP |
| 14 | #define BOOST_LAMBDA_SUPPRESS_UNUSED_HPP |
| 15 | |
| 16 | namespace boost { |
| 17 | namespace lambda { |
| 18 | namespace detail { |
| 19 | |
| 20 | template<class T> |
| 21 | inline void suppress_unused_variable_warnings(const T&) {} |
| 22 | |
| 23 | } |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | #endif |
| 28 | |