| 74 | } |
| 75 | |
| 76 | void problem_cache::mark(const std::string& name, const value& problem) |
| 77 | { |
| 78 | cache.insert(std::make_pair(create_key(name, problem), value{})); |
| 79 | } |
| 80 | |
| 81 | optional<value> problem_cache::get(const std::string& name, const value& problem) const |
| 82 | { |
no test coverage detected