| 111 | } |
| 112 | |
| 113 | void remove_domain() |
| 114 | { |
| 115 | if (fiber_stack != nullptr) { |
| 116 | fiber_stack->top().clear(); |
| 117 | fiber_stack->pop_no_return(); |
| 118 | } |
| 119 | else { |
| 120 | m_data.top().clear(); |
| 121 | m_data.pop_no_return(); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | void clear_set() |
| 126 | { |
no test coverage detected