mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 08:55:57 +02:00
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>
13 lines
247 B
Diff
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"
|