Hi, got an issue when compiling breakpad with clang for windows.
Here's the issue:
/vcpkg/buildtrees/breakpad/src/2023.06.01-e00c2a36b7.clean/src/processor/minidump_processor.cc(1407,14): error: case value evaluates to -1073741680, which cannot be narrowed to type 'uint32_t' (aka 'unsigned int') [-Wc++11-narrowing]
1407 | case MD_EXCEPTION_CODE_WIN_FLOAT_INVALID_OPERATION:
| ^
I fixed that by forcing the enum type to uint32_t: