| 46 | inline size_t size() const override { return sizeof(null); } |
| 47 | inline size_t alignment() const override { return alignof(null); } |
| 48 | inline void construct(void* ptr) const override { new (ptr) null(); } |
| 49 | inline void copyConstruct(void* dst, const void* src) const override { |
| 50 | new (dst) null(*reinterpret_cast<const null*>(src)); |
| 51 | } |
no outgoing calls
no test coverage detected