]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
add `#include <string>` to unicode.h (#5051)
authorbobqianic <redacted>
Sun, 21 Jan 2024 15:17:35 +0000 (15:17 +0000)
committerGitHub <redacted>
Sun, 21 Jan 2024 15:17:35 +0000 (10:17 -0500)
Co-authored-by: Jared Van Bortel <redacted>
unicode.h

index aeca879ea6865b364a2f15c392c9eb5ece2e107b..844eff3dad1b3fde6223b18aedd6655e3238e76f 100644 (file)
--- a/unicode.h
+++ b/unicode.h
@@ -2,8 +2,9 @@
 
 #include <cassert>
 #include <stdexcept>
-#include <vector>
+#include <string>
 #include <unordered_map>
+#include <vector>
 
 static const std::vector<std::pair<uint32_t, uint32_t>> digit_ranges = {
 {0x30, 0x39}, {0xB2, 0xB3}, {0xB9, 0xB9}, {0x660, 0x669}, {0x6F0, 0x6F9}, {0x7C0, 0x7C9}, {0x966, 0x96F}, {0x9E6, 0x9EF}, {0xA66, 0xA6F}, {0xAE6, 0xAEF}, {0xB66, 0xB6F}, {0xBE6, 0xBEF}, {0xC66, 0xC6F},