This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from e7bee0d docs: add some documentation for building on Windows new d60b66a Split exception.cpp and new.cpp implementation into different [...]
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: CMakeLists.txt | 8 + include/exception | 6 + include/new | 24 +- include/typeinfo | 7 +- src/exception.cpp | 326 +-------------------- src/new.cpp | 160 +++------- src/support/runtime/exception_fallback.ipp | 182 ++++++++++++ .../support/runtime/exception_glibcxx.ipp | 35 ++- .../support/runtime/exception_libcxxabi.ipp | 29 +- src/support/runtime/exception_libcxxrt.ipp | 41 +++ src/support/runtime/exception_msvc.ipp | 89 ++++++ src/support/runtime/exception_pointer_cxxabi.ipp | 74 +++++ src/support/runtime/exception_pointer_glibcxx.ipp | 74 +++++ .../runtime/exception_pointer_unimplemented.ipp | 80 +++++ .../support/runtime/new_handler_fallback.ipp | 23 +- src/typeinfo.cpp | 65 +--- 16 files changed, 675 insertions(+), 548 deletions(-) create mode 100644 src/support/runtime/exception_fallback.ipp copy test/std/depr/depr.c.headers/errno_h.pass.cpp => src/support/runtime/exceptio [...] copy test/std/depr/depr.c.headers/errno_h.pass.cpp => src/support/runtime/exceptio [...] create mode 100644 src/support/runtime/exception_libcxxrt.ipp create mode 100644 src/support/runtime/exception_msvc.ipp create mode 100644 src/support/runtime/exception_pointer_cxxabi.ipp create mode 100644 src/support/runtime/exception_pointer_glibcxx.ipp create mode 100644 src/support/runtime/exception_pointer_unimplemented.ipp copy test/std/utilities/variant/variant.variant/variant_empty.fail.cpp => src/supp [...]