This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update all dependencies and GCC-12 support (#165)
* Use newer IMGUI that supports logarithmic float slider * Include updated IMGUI * Use RED directly instead of removed ERROR * Include IMGUI tables for linking * Update double-conversion, glfw, glm, openvdb, ordered-map dependencies * Update libfive dependency * Build for macos --------- Co-authored-by: lf94 <[email protected]>
- Loading branch information
Showing
15 changed files
with
68 additions
and
381 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
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
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
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 double-conversion
updated
45 files
Submodule libfive
updated
47 files
Submodule ordered-map
updated
15 files
+1 −0 | .clang-format | |
+136 −0 | .github/workflows/ci.yml | |
+0 −61 | .travis.yml | |
+1 −1 | CMakeLists.txt | |
+3 −3 | README.md | |
+0 −40 | appveyor.yml | |
+1,514 −1,485 | include/tsl/ordered_hash.h | |
+930 −811 | include/tsl/ordered_map.h | |
+776 −677 | include/tsl/ordered_set.h | |
+1 −0 | tests/CMakeLists.txt | |
+74 −85 | tests/custom_allocator_tests.cpp | |
+6 −7 | tests/main.cpp | |
+1,366 −1,239 | tests/ordered_map_tests.cpp | |
+105 −112 | tests/ordered_set_tests.cpp | |
+266 −227 | tests/utils.h |
Submodule replxx
updated
27 files
+38 −0 | .github/workflows/ci.yml | |
+3 −1 | .gitignore | |
+12 −2 | CMakeLists.txt | |
+4 −18 | README.md | |
+23 −7 | build-all.sh | |
+10 −6 | examples/c-api.c | |
+265 −57 | examples/cxx-api.cxx | |
+1 −1 | examples/util.c | |
+129 −13 | include/replxx.h | |
+154 −14 | include/replxx.hxx | |
+2 −2 | src/conversion.cxx | |
+1 −1 | src/escape.cxx | |
+66 −25 | src/history.cxx | |
+35 −13 | src/history.hxx | |
+21 −85 | src/prompt.cxx | |
+11 −12 | src/prompt.hxx | |
+124 −5 | src/replxx.cxx | |
+763 −396 | src/replxx_impl.cxx | |
+53 −15 | src/replxx_impl.hxx | |
+166 −110 | src/terminal.cxx | |
+5 −1 | src/terminal.hxx | |
+42 −5 | src/unicodestring.hxx | |
+18 −1 | src/utf8string.hxx | |
+128 −119 | src/util.cxx | |
+9 −3 | src/util.hxx | |
+4 −4 | src/windows.cxx | |
+1,515 −152 | tests.py |
Oops, something went wrong.