Compilation error uint64_t undefined (smallVector.h)
Compilation error with gcc15.1 and llvm19.1:
BandageNG/thirdparty/./llvm/ADT/SmallVector.h:29:1: note: ‘uint64_t’ is defined in header ‘<cstdint>’; this is probably fixable by adding ‘#include <cstdint>’
Adding:
28 | #include <memory>
+++ |+#include <cstdint>
29 | #include <new>
to SmallVector.h fixes the issue :)
0 条评论