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
16namespace boost {
17namespace lambda {
18namespace detail {
19
20template<class T>
21inline void suppress_unused_variable_warnings(const T&) {}
22
23}
24}
25}
26
27#endif
28

source code of boost/boost/lambda/detail/suppress_unused.hpp