| 25 | namespace spvtools { |
| 26 | |
| 27 | Context::Context(spv_target_env env) : context_(spvContextCreate(env)) {} |
| 28 | |
| 29 | Context::Context(Context&& other) : context_(other.context_) { |
| 30 | other.context_ = nullptr; |
nothing calls this directly
no test coverage detected