Running clang-tidy on macos I get this error:
/Users/matthewzipkin/Desktop/work/bitcoin/src/ipc/libmultiprocess/src/mp/util.cpp:84:25: error: use nullptr [modernize-use-nullptr,-warnings-as-errors]
84 | pthread_threadid_np(NULL, &tid);
| ^~~~
| nullptr
I suspect the reason this hasn't triggered failures on our CI is that this code block is not compiled on linux: