-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Catch2
updated
62 files
Submodule fast_float
updated
29 files
Submodule fmt
updated
42 files
Submodule simdutf
updated
19 files
+3 −3 | CMakeLists.txt | |
+1 −1 | Doxyfile | |
+16 −3 | README.md | |
+11 −1 | fuzz/build.sh | |
+41 −2 | fuzz/misc.cpp | |
+12 −0 | include/simdutf/compiler_check.h | |
+70 −60 | include/simdutf/implementation.h | |
+3 −3 | include/simdutf/simdutf_version.h | |
+4 −4 | src/arm64/arm_convert_utf8_to_latin1.cpp | |
+4 −4 | src/arm64/arm_convert_utf8_to_utf32.cpp | |
+2 −2 | src/fallback/implementation.cpp | |
+5 −2 | src/generic/utf8_to_utf16/utf8_to_utf16.h | |
+9 −6 | src/generic/utf8_to_utf32/utf8_to_utf32.h | |
+4 −4 | src/haswell/avx2_convert_utf8_to_utf32.cpp | |
+27 −1 | src/implementation.cpp | |
+47 −7 | src/scalar/latin1_to_utf8/latin1_to_utf8.h | |
+4 −4 | src/westmere/sse_convert_utf8_to_utf32.cpp | |
+24 −0 | tests/convert_latin1_to_utf8_tests.cpp | |
+423 −0 | tests/convert_utf8_to_utf32_tests.cpp |