| 533 | |
| 534 | template<class T = void*, class Ldr> |
| 535 | LAZY_IMPORTER_FORCEINLINE static T in_cached(Ldr ldr) noexcept |
| 536 | { |
| 537 | auto& cached = lazy_base<lazy_module<OHP>>::_cache(); |
| 538 | if(!cached) |
| 539 | cached = in(ldr); |
| 540 | |
| 541 | return (T)(cached); |
| 542 | } |
| 543 | }; |
| 544 | |
| 545 | template<offset_hash_pair OHP, class T> |
nothing calls this directly
no outgoing calls
no test coverage detected