Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cli/cppcheckexecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,9 @@ int CppCheckExecutor::executeCommand(std::string exe, std::vector<std::string> a

#ifdef _WIN32
const int res = _pclose(p);
#elif defined(__APPLE__) && defined(__MACH__)
// the W* macros cast to int* on macOS
int res = pclose(p);
#else
const int res = pclose(p);
#endif
Expand Down
Loading