r239183 - in /trunk/libstdc++-v3: ChangeLog doc...

redi@gcc.gnu.org redi@gcc.gnu.org
Sat Aug 6 00:06:00 GMT 2016


Author: redi
Date: Sat Aug  6 00:06:02 2016
New Revision: 239183

URL: https://gcc.gnu.org/viewcvs?rev=239183&root=gcc&view=rev
Log:
Add std::apply for C++17

	* doc/xml/manual/status_cxx2017.xml: Add missing LFTSv2 features.
	* doc/html/manual/status.html: Regenerate.
	* include/Makefile.am: Add new header.
	* include/Makefile.in: Regenerate.
	* include/bits/invoke.h: New header.
	(__invoke): Make constexpr. Add && to types in exception specification.
	* include/experimental/tuple (apply, __apply_impl): Fix non-reserved
	names. Include <bits/invoke.h> and use std::__invoke.
	* include/std/functional (__invfwd, __invoke_impl, __invoke): Move to
	new header.
	(invoke): Add && to types in exception specification.
	* include/std/tuple (apply, __apply_impl): Define for C++17.
	* testsuite/20_util/tuple/apply/1.cc: New test.
	* testsuite/20_util/tuple/element_access/get_neg.cc: Adjust dg-error
	lineno.

Added:
    trunk/libstdc++-v3/include/bits/invoke.h
    trunk/libstdc++-v3/testsuite/20_util/tuple/apply/
    trunk/libstdc++-v3/testsuite/20_util/tuple/apply/1.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/doc/html/manual/status.html
    trunk/libstdc++-v3/doc/xml/manual/status_cxx2017.xml
    trunk/libstdc++-v3/include/Makefile.am
    trunk/libstdc++-v3/include/Makefile.in
    trunk/libstdc++-v3/include/experimental/tuple
    trunk/libstdc++-v3/include/std/functional
    trunk/libstdc++-v3/include/std/tuple
    trunk/libstdc++-v3/testsuite/20_util/tuple/element_access/get_neg.cc



More information about the Libstdc++-cvs mailing list