-
Notifications
You must be signed in to change notification settings - Fork 3
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
34a50df
commit 2a433f7
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Submodule doxygen-awesome-css
updated
7 files
+7 −2 | docs/customization.md | |
+5 −1 | docs/extensions.md | |
+7 −2 | docs/tricks.md | |
+40 −39 | doxygen-awesome.css | |
+57 −8 | doxygen-custom/custom.css | |
+1 −1 | doxygen-custom/header.html | |
+4 −0 | include/MyLibrary/example.hpp |
Submodule i18n-check
updated
from a8df8a to 84e483
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 |