-
Notifications
You must be signed in to change notification settings - Fork 26
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
1 parent
ae22842
commit a8a3c20
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule utfcpp
updated
20 files
+0 −13 | .circleci/config.yml | |
+75 −0 | .github/workflows/cmake-multi-platform.yml | |
+36 −55 | CMakeLists.txt | |
+816 −197 | README.md | |
+0 −64 | samples/docsample.cpp | |
+12 −0 | source/utf8.h | |
+72 −32 | source/utf8/checked.h | |
+155 −50 | source/utf8/core.h | |
+2 −35 | source/utf8/cpp11.h | |
+1 −8 | source/utf8/cpp17.h | |
+124 −0 | source/utf8/cpp20.h | |
+58 −30 | source/utf8/unchecked.h | |
+24 −11 | tests/CMakeLists.txt | |
+1 −1 | tests/docker/Dockerfile | |
+36 −1 | tests/test_checked_api.h | |
+13 −0 | tests/test_cpp11.cpp | |
+2 −2 | tests/test_cpp17.cpp | |
+77 −0 | tests/test_cpp20.cpp | |
+29 −0 | tests/test_unchecked_api.h | |
+3 −3 | utf8cppConfig.cmake.in |