This issue does not occur with older versions of the C/C++ extension (from two months ago) or when using theclangdextension as the language server. This behavior suggests that there might be a bug in the recent C/C++ extension versions. Here’s my simple test program, which compiles and ...
Homebrew clangd version 17.0.6 Features: mac+xpc Platform: arm64-apple-darwin22.5.0 I created the following main file #include <iostream> #include <bit> int main(int argc, char** argv) { uint32_t sample = 0x42; auto result = std::byteswap(sample); std::cout << "Result = " <...