Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:39:09

0001 // Boost Lambda Library  suppress_unused.hpp -----------------------------
0002 //
0003 // Copyright (C) 2009 Steven Watanabe
0004 //
0005 // Distributed under the Boost Software License, Version 1.0. (See
0006 // accompanying file LICENSE_1_0.txt or copy at
0007 // http://www.boost.org/LICENSE_1_0.txt)
0008 //
0009 // For more information, see www.boost.org
0010 
0011 // ------------------------------------------------------------
0012 
0013 #ifndef BOOST_LAMBDA_SUPPRESS_UNUSED_HPP
0014 #define BOOST_LAMBDA_SUPPRESS_UNUSED_HPP
0015 
0016 namespace boost { 
0017 namespace lambda {
0018 namespace detail {
0019 
0020 template<class T>
0021 inline void suppress_unused_variable_warnings(const T&) {}
0022 
0023 }
0024 }
0025 }
0026 
0027 #endif