fwd.hpp 531 B

1234567891011121314151617181920212223
  1. // Copyright (C) 2008-2011 Daniel James.
  2. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef BOOST_UNORDERED_FWD_HPP_INCLUDED
  5. #define BOOST_UNORDERED_FWD_HPP_INCLUDED
  6. #include <boost/config.hpp>
  7. #if defined(BOOST_HAS_PRAGMA_ONCE)
  8. #pragma once
  9. #endif
  10. namespace boost
  11. {
  12. namespace unordered
  13. {
  14. struct piecewise_construct_t {};
  15. const piecewise_construct_t piecewise_construct = piecewise_construct_t();
  16. }
  17. }
  18. #endif