This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 6952d1478 [libc++] Remove _LIBCPP_BUILDING_XXX macros, which are redund [...] new dc38e9760 [libc++][C++17] Elementary string conversions for integral types
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/CMakeLists.txt | 1 + include/charconv | 610 +++++++++++++++++++++ include/module.modulemap | 4 + src/charconv.cpp | 233 ++++++++ test/libcxx/double_include.sh.cpp | 1 + .../charconv.from.chars/integral.bool.fail.cpp} | 30 +- .../charconv/charconv.from.chars/integral.pass.cpp | 181 ++++++ .../charconv.to.chars/integral.bool.fail.cpp | 30 + .../charconv/charconv.to.chars/integral.pass.cpp | 80 +++ test/support/charconv_test_helpers.h | 232 ++++++++ 10 files changed, 1387 insertions(+), 15 deletions(-) create mode 100644 include/charconv create mode 100644 src/charconv.cpp copy test/std/{numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/ctor_p [...] create mode 100644 test/std/utilities/charconv/charconv.from.chars/integral.pass.cpp create mode 100644 test/std/utilities/charconv/charconv.to.chars/integral.bool.fail.cpp create mode 100644 test/std/utilities/charconv/charconv.to.chars/integral.pass.cpp create mode 100644 test/support/charconv_test_helpers.h