Skip to content

Commit 951e02e

Browse files
authored
Merge pull request #2027 from DeusData/fix/posix-probe-counter-unused-but-set
fix(cli): drop the POSIX probe-counter store that Clang 23 rejects
2 parents 5802ccd + 0ac290e commit 951e02e

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/cli/cli.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1765,14 +1765,25 @@ static bool cbm_json_mcp_command_path_probe_safe(const char *command) {
17651765
#endif
17661766

17671767
#ifdef CBM_CLI_ENABLE_TEST_API
1768+
#ifdef _WIN32
17681769
static CBM_TLS int *g_mcp_command_path_probe_counter = NULL;
1770+
#endif
17691771

17701772
bool cbm_mcp_command_path_probe_safe_for_testing(const char *command, bool windows) {
17711773
return cbm_json_mcp_command_path_probe_safe_for_platform(command, windows);
17721774
}
17731775

17741776
void cbm_set_mcp_command_path_probe_counter_for_testing(int *counter) {
1777+
#ifdef _WIN32
17751778
g_mcp_command_path_probe_counter = counter;
1779+
#else
1780+
/* The command-path classifier (cbm_json_mcp_probe_command_path) is compiled
1781+
* for Windows only, so on POSIX there is no probe to count. The tests still
1782+
* install a counter on every platform and assert it stays at zero; a pointer
1783+
* stored here but never read is what Clang 23 rejects under -Werror
1784+
* (-Wunused-but-set-global). */
1785+
(void)counter;
1786+
#endif
17761787
}
17771788
#endif
17781789

0 commit comments

Comments
 (0)