suppress_unused.hpp 620 B

123456789101112131415161718192021222324252627
  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. #ifndef BOOST_LAMBDA_SUPPRESS_UNUSED_HPP
  12. #define BOOST_LAMBDA_SUPPRESS_UNUSED_HPP
  13. namespace boost {
  14. namespace lambda {
  15. namespace detail {
  16. template<class T>
  17. inline void suppress_unused_variable_warnings(const T&) {}
  18. }
  19. }
  20. }
  21. #endif