| 15 | |
| 16 | namespace FEXCore { |
| 17 | GuestToHostMap::GuestToHostMap() |
| 18 | : BlockLinks_mbr {fextl::pmr::get_default_resource()} { |
| 19 | BlockLinks_pma = fextl::make_unique<std::pmr::polymorphic_allocator<std::byte>>(&BlockLinks_mbr); |
| 20 | // Setup our PMR map. |
| 21 | BlockLinks = BlockLinks_pma->new_object<BlockLinksMapType>(); |
| 22 | } |
| 23 | |
| 24 | LookupCache::LookupCache(FEXCore::Context::ContextImpl* CTX) |
| 25 | : ctx {CTX} { |
nothing calls this directly
no test coverage detected