| 125 | } |
| 126 | |
| 127 | BOOST_LEAF_ALWAYS_INLINE void write_current_error_id( unsigned x ) noexcept |
| 128 | { |
| 129 | static_assert(sizeof(std::intptr_t) >= sizeof(unsigned), "Incompatible tls_array implementation"); |
| 130 | write_void_ptr(BOOST_LEAF_CFG_TLS_ARRAY_START_INDEX, (void *) (std::intptr_t) x); |
| 131 | } |
| 132 | |
| 133 | BOOST_LEAF_ALWAYS_INLINE unsigned read_current_error_id() noexcept |
| 134 | { |
no test coverage detected