Commit de28a26
Fix build with GCC 15
Building with GCC 15 results in
In file included from Util/src/SymSpell/SymSpell.cpp:1:
Util/include/Util/SymSpell/SymSpell.h:72:5: error: ‘uint32_t’ does not name a type
72 | uint32_t _compactMask;
| ^~~~~~~~
Util/include/Util/SymSpell/SymSpell.h:32:1: note: ‘uint32_t’ is defined in header ‘<cstdint>’; this is probably fixable by add
ing ‘#include <cstdint>’
31 | #include <vector>
+++ |+#include <cstdint>
32 |
Caught while building lua-language-server with GCC 15
Fix taken from 234c0c8
Signed-off-by: Brahmajit Das <[email protected]>1 parent 777089b commit de28a26
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
28 | | - | |
| 27 | + | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
0 commit comments