123456789101112131415161718192021222324252627 |
- #ifndef BOOST_LAMBDA_SUPPRESS_UNUSED_HPP
- #define BOOST_LAMBDA_SUPPRESS_UNUSED_HPP
- namespace boost {
- namespace lambda {
- namespace detail {
- template<class T>
- inline void suppress_unused_variable_warnings(const T&) {}
- }
- }
- }
- #endif
|