| 23 | // to recompute the set |
| 24 | struct Subscript { |
| 25 | Subscript(std::string str, CharSet set) |
| 26 | : str(std::move(str)), set(std::move(set)) {}; |
| 27 | std::string str; |
| 28 | CharSet set; |
| 29 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected