| 67 | std::string mCs; |
| 68 | public: |
| 69 | StringParser(std::string cs) |
| 70 | : mCs{std::move(cs)} |
| 71 | {} |
| 72 | auto operator()(std::string str) const -> std::vector<std::tuple<std::string, std::string>> |
| 73 | { |
| 74 | if (mCs.empty()) |
nothing calls this directly
no outgoing calls
no test coverage detected