1
0
forked from pool/libzrtpcpp
Files
libzrtpcpp/gcc15.patch

22 lines
660 B
Diff
Raw Permalink Normal View History

2025-06-25 00:19:56 +02:00
From: Jan Engelhardt <ej@inai.de>
Date: 2025-06-25 00:18:43.800587540 +0200
EmojiBase32.cpp:154:9: error: uint32_t was not declared in this scope
154 | if((uint32_t)(c)<=0x7f) { \
---
zrtp/EmojiBase32.cpp | 1 +
1 file changed, 1 insertion(+)
Index: ZRTPCPP-4.7.0/zrtp/EmojiBase32.cpp
===================================================================
--- ZRTPCPP-4.7.0.orig/zrtp/EmojiBase32.cpp
+++ ZRTPCPP-4.7.0/zrtp/EmojiBase32.cpp
@@ -1,6 +1,7 @@
//
// Created by werner on 26.12.15.
//
+#include <cstdint>
#include <iostream>
// stdlib.h required for Android NDK builds, not included within the above includes
#include <cstdlib>