mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-22 03:46:53 -05:00
libstdc++: Export std::indirect and std::polymorphic from std module [PR119152]
PR libstdc++/119152 libstdc++-v3/ChangeLog: * src/c++23/std.cc.in (std::indirect, pmr::indirect) [__cpp_lib_indirect] (std::polymorphic, pmr::polymorphic) [__cpp_lib_polymorphic]: Export.
This commit is contained in:
@@ -1956,6 +1956,14 @@ export namespace std
|
||||
using std::out_ptr;
|
||||
using std::inout_ptr;
|
||||
#endif
|
||||
#if __cpp_lib_indirect
|
||||
using std::indirect;
|
||||
namespace pmr { using std::pmr::indirect; }
|
||||
#endif
|
||||
#if __cpp_lib_polymorphic
|
||||
using std::polymorphic;
|
||||
namespace pmr { using std::pmr::polymorphic; }
|
||||
#endif
|
||||
}
|
||||
|
||||
// 20.4 <memory_resource>
|
||||
|
||||
Reference in New Issue
Block a user