Warning, file /include/boost/move/detail/placement_new.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #ifndef BOOST_MOVE_DETAIL_PLACEMENT_NEW_HPP
0002 #define BOOST_MOVE_DETAIL_PLACEMENT_NEW_HPP
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef BOOST_CONFIG_HPP
0014 # include <boost/config.hpp>
0015 #endif
0016
0017 #if defined(BOOST_HAS_PRAGMA_ONCE)
0018 # pragma once
0019 #endif
0020
0021 #include <cstddef>
0022
0023 struct boost_move_new_t{};
0024
0025
0026 inline void *operator new(std::size_t, void *p, boost_move_new_t)
0027 { return p; }
0028
0029 inline void operator delete(void *, void *, boost_move_new_t)
0030 {}
0031
0032 #endif