Skip to content

Commit ea4d519

Browse files
authored
Add #include <cstdint> to fix building with gcc 15 (#2174)
With gcc 15, the C++ Standard Library no longer includes other headers that were internally used by the library. In conky's case the missing header is `<cstdint>` Downstream Gentoo bug: https://bugs.gentoo.org/939667 Signed-off-by: Kostadin Shishmanov <kostadinshishmanov@protonmail.com>
1 parent ab64105 commit ea4d519

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/content/colours.hh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434

3535
#include <cassert>
3636
#include <climits>
37+
#include <cstdint>
3738
#include <memory>
3839
#include <string>
3940
#include <unordered_map>

0 commit comments

Comments
 (0)