This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-7-branch in repository gcc.
from 9e93716c775 Daily bump. new b1166a79cd9 Fix std::codecvt_utf8<wchar_t> for Mingw new 03340ff1848 PR libstdc++/86734 use addressof in reverse_iterator::operator-> new cbbf2c54ced Add workaround for aligned_alloc bug on AIX new 8213de1458d PR libstdc++/86861 Meet precondition for Solaris memalign new 4fb0eed8ad3 PR libstdc++/60555 std::system_category() should recognise [...] new f97c8a40c54 Improve libstdc++ docs w.r.t newer C++ standards new c8733217874 PR libstdc++/86292 fix exception safety of std::vector<Inpu [...] new 644b44e3612 PR libstdc++/68519 use native duration to avoid rounding errors new 2645dc333a0 PR libstdc++/80893 Fix null dereference in vector<bool> new 563e5e41951 PR libstdc++/84654 Disable __float128 specializations for - [...] new 6ef64696912 Declare some explicit instantiations for strings in Debug Mode
The 11 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: libstdc++-v3/ChangeLog | 131 ++++++++ libstdc++-v3/acinclude.m4 | 5 +- libstdc++-v3/config.h.in | 3 - libstdc++-v3/configure | 37 ++- libstdc++-v3/doc/html/manual/index.html | 2 +- libstdc++-v3/doc/html/manual/test.html | 11 +- libstdc++-v3/doc/html/manual/using_headers.html | 83 ++++- libstdc++-v3/doc/xml/manual/test.xml | 11 +- libstdc++-v3/doc/xml/manual/using.xml | 343 ++++++++++++++++----- libstdc++-v3/include/Makefile.am | 13 +- libstdc++-v3/include/Makefile.in | 10 +- libstdc++-v3/include/bits/basic_string.tcc | 8 +- libstdc++-v3/include/bits/c++config | 5 + libstdc++-v3/include/bits/stl_bvector.h | 14 +- libstdc++-v3/include/bits/stl_iterator.h | 5 +- libstdc++-v3/include/bits/stl_vector.h | 19 +- libstdc++-v3/include/std/condition_variable | 16 +- libstdc++-v3/libsupc++/new_opa.cc | 34 +- libstdc++-v3/src/c++11/codecvt.cc | 7 +- libstdc++-v3/src/c++11/system_error.cc | 256 +++++++++++++++ libstdc++-v3/testsuite/18_support/new_aligned.cc | 119 +++++++ .../error_category/generic_category.cc | 69 +++++ .../error_category/system_category.cc | 114 +++++++ .../22_locale/codecvt/codecvt_utf8/69703.cc | 5 +- .../codecvt/codecvt_utf8/wchar_t/1.cc} | 31 +- .../vector/{59829.cc => bool/80893.cc} | 27 +- .../resize/strong_guarantee.cc => cons/86292.cc} | 44 +-- .../reverse_iterator/dr2188.cc} | 30 +- .../{cons/1.cc => members/68519.cc} | 52 ++-- libstdc++-v3/testsuite/util/testsuite_allocator.h | 8 +- 30 files changed, 1286 insertions(+), 226 deletions(-) create mode 100644 libstdc++-v3/testsuite/18_support/new_aligned.cc create mode 100644 libstdc++-v3/testsuite/19_diagnostics/error_category/generic_ca [...] create mode 100644 libstdc++-v3/testsuite/19_diagnostics/error_category/system_cat [...] copy libstdc++-v3/testsuite/{21_strings/basic_string/dr2268.cc => 22_locale/codecv [...] copy libstdc++-v3/testsuite/23_containers/vector/{59829.cc => bool/80893.cc} (74%) copy libstdc++-v3/testsuite/23_containers/vector/{capacity/resize/strong_guarantee [...] copy libstdc++-v3/testsuite/{21_strings/basic_string/dr2268.cc => 24_iterators/rev [...] copy libstdc++-v3/testsuite/30_threads/condition_variable/{cons/1.cc => members/68 [...]