gentoo-ebuilds/app-i18n/opencc/files/opencc-1.1.7-fix-missing-cstdint-for-gcc-15.patch
Yongxiang Liang 233b77e82c
app-i18n/opencc: fix for gcc-15
Closes: https://bugs.gentoo.org/937629
Signed-off-by: Yongxiang Liang <tanekliang@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/38499
Signed-off-by: Sam James <sam@gentoo.org>
2024-09-07 23:07:58 +01:00

13 lines
247 B
Diff

https://github.com/BYVoid/OpenCC/pull/894
Fix missing cstdint for GCC 15
--- a/src/SerializedValues.cpp
+++ b/src/SerializedValues.cpp
@@ -17,6 +17,7 @@
*/
#include <cassert>
+#include <cstdint>
#include <cstring>
#include "Lexicon.hpp"