| 41 | Context::~Context() { spvContextDestroy(context_); } |
| 42 | |
| 43 | void Context::SetMessageConsumer(MessageConsumer consumer) { |
| 44 | SetContextMessageConsumer(context_, std::move(consumer)); |
| 45 | } |
| 46 | |
| 47 | spv_context& Context::CContext() { return context_; } |
| 48 |
no test coverage detected