| 35 | namespace spvtools { |
| 36 | |
| 37 | std::vector<std::string> GetVectorOfStrings(const char** strings, |
| 38 | const size_t string_count) { |
| 39 | std::vector<std::string> result; |
| 40 | for (uint32_t i = 0; i < string_count; i++) { |
| 41 | result.emplace_back(strings[i]); |
| 42 | } |
| 43 | return result; |
| 44 | } |
| 45 | |
| 46 | struct Optimizer::PassToken::Impl { |
| 47 | Impl(std::unique_ptr<opt::Pass> p) : pass(std::move(p)) {} |
no test coverage detected