| 303 | constexpr result() : _ptr(nullptr) {} |
| 304 | |
| 305 | static COVSCRIPT_ALWAYS_INLINE constexpr result from_ptr(void *p) noexcept |
| 306 | { |
| 307 | result r; |
| 308 | r._ptr = p; |
| 309 | return r; |
| 310 | } |
| 311 | |
| 312 | static COVSCRIPT_ALWAYS_INLINE constexpr result from_int(std::intptr_t i) noexcept |
| 313 | { |