mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-12 18:59:50 +03:00
34 lines
820 B
Diff
34 lines
820 B
Diff
Patch-Source: https://github.com/BYVoid/OpenCC/commit/3d3adca2dbee0da7d33eb3c3563299fcbd2255e3
|
|
--
|
|
From 3d3adca2dbee0da7d33eb3c3563299fcbd2255e3 Mon Sep 17 00:00:00 2001
|
|
From: Yongxiang Liang <tanekliang@gmail.com>
|
|
Date: Tue, 27 Aug 2024 03:54:36 +0800
|
|
Subject: [PATCH] Fix missing cstdint for GCC 15
|
|
|
|
---
|
|
src/SerializedValues.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/SerializedValues.cpp b/src/SerializedValues.cpp
|
|
index 54f23e018..9728c4592 100644
|
|
--- a/src/SerializedValues.cpp
|
|
+++ b/src/SerializedValues.cpp
|
|
@@ -17,6 +17,7 @@
|
|
*/
|
|
|
|
#include <cassert>
|
|
+#include <cstdint>
|
|
#include <cstring>
|
|
|
|
#include "Lexicon.hpp"
|
|
--- a/src/SerializedValues.hpp
|
|
+++ b/src/SerializedValues.hpp
|
|
@@ -18,6 +18,8 @@
|
|
|
|
#pragma once
|
|
|
|
+#include <cstdint>
|
|
+
|
|
#include "Common.hpp"
|
|
#include "SerializableDict.hpp"
|
|
|