| 142 | } |
| 143 | |
| 144 | ModSet ModSet::FromCodes(const std::vector<uint32_t>& codes) |
| 145 | { |
| 146 | uint32_t combined = 0; |
| 147 | for (auto& code : codes) { |
| 148 | combined |= code; |
| 149 | } |
| 150 | return { combined }; |
| 151 | } |
| 152 | } |
nothing calls this directly
no outgoing calls
no test coverage detected