summaryrefslogtreecommitdiff
path: root/src/utf.hh
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@opera.com>2023-07-18 14:10:13 +0200
committerJoel Klinghed <the_jk@opera.com>2023-07-18 14:10:13 +0200
commit467db2e9086bdffb9adfcb2143684471c061f206 (patch)
treed62400867b91f7b6dcc8fbd6291c1acbf1c7ffeb /src/utf.hh
parent4c37e28978eda34ff625c0f830d603107a50bc3d (diff)
Add missing includes for cstdint
Worked with older STL because the types leaked.
Diffstat (limited to 'src/utf.hh')
-rw-r--r--src/utf.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utf.hh b/src/utf.hh
index 7625b1b..619f176 100644
--- a/src/utf.hh
+++ b/src/utf.hh
@@ -3,6 +3,7 @@
#ifndef UTF_HH
#define UTF_HH
+#include <cstdint>
#include <string>
char* read_utf8(char const* in, size_t max, uint32_t* out);