| 221 | } |
| 222 | |
| 223 | void ContextImpl::clear_hit_count(std::string node_name) |
| 224 | { |
| 225 | if (!MaaContextClearHitCount(context, node_name.c_str())) { |
| 226 | throw maajs::MaaError { "Context clear_hit_count failed" }; |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | std::string ContextImpl::to_string() |
| 231 | { |
nothing calls this directly
no test coverage detected