| 1730 | } |
| 1731 | |
| 1732 | static bool mcp_project_mutation_try_begin(cbm_mcp_server_t *srv, const char *project) { |
| 1733 | return !srv->mutation_begin || |
| 1734 | (srv->mutation_try_begin && srv->mutation_try_begin(srv->mutation_context, project)); |
| 1735 | } |
| 1736 | |
| 1737 | static void mcp_project_mutation_end(cbm_mcp_server_t *srv, const char *project) { |
| 1738 | if (srv->mutation_end) { |
no outgoing calls
no test coverage detected