fwd.hpp 514 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. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  7. # pragma once
  8. #endif
  9. namespace boost
  10. {
  11. namespace unordered
  12. {
  13. struct piecewise_construct_t {};
  14. const piecewise_construct_t piecewise_construct = piecewise_construct_t();
  15. }
  16. }
  17. #endif