value_functors.hpp 925 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef BOOST_CONTAINER_DETAIL_VALUE_FUNCTORS_HPP
  2. #define BOOST_CONTAINER_DETAIL_VALUE_FUNCTORS_HPP
  3. ///////////////////////////////////////////////////////////////////////////////
  4. //
  5. // (C) Copyright Ion Gaztanaga 2017-2017. Distributed under the Boost
  6. // Software License, Version 1.0. (See accompanying file
  7. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/container for documentation.
  10. //
  11. ///////////////////////////////////////////////////////////////////////////////
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #if defined(BOOST_HAS_PRAGMA_ONCE)
  16. # pragma once
  17. #endif
  18. #include <boost/intrusive/detail/value_functors.hpp>
  19. namespace boost {
  20. namespace container {
  21. using ::boost::intrusive::value_less;
  22. using ::boost::intrusive::value_equal;
  23. } //namespace container {
  24. } //namespace boost {
  25. #endif //BOOST_CONTAINER_DETAIL_VALUE_FUNCTORS_HPP