diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-13 20:44:06 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-13 20:44:06 +0000 |
commit | 82fe3c603e68f05ff811ad7f100278cb4d049898 (patch) | |
tree | 5652a60d71016c53bbb0aac1ef275c4b2a0d0115 /libstdc++-v3/include/experimental/functional | |
parent | de03b9ecbc54eee8a48e8bfc7d235fb66d0f64c9 (diff) | |
download | gcc-82fe3c603e68f05ff811ad7f100278cb4d049898.tar.gz |
Post-Urbana updates to Library Fundamentals v1.
* include/experimental/any (any): Remove allocator support and update
feature-testing macro.
* include/experimental/functional: Update feature-testing macro.
* include/experimental/optional (optional::_M_get()): Add constexpr.
(optional::operator*(), optional::value()): Overload and add
ref-qualifiers. Update feature-testing macro.
* include/experimental/string_view (basic_string_view::clear): Remove
and update feature-testing macro.
* testsuite/experimental/any/cons/3.cc: Remove.
* testsuite/experimental/any/cons/4.cc: Remove.
* testsuite/experimental/any/misc/any_cast.cc: Remove allocator tests.
* testsuite/experimental/any/misc/any_cast_neg.cc: Adjust dg-error.
* testsuite/experimental/string_view/capacity/1.cc: Don't test clear().
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218709 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/experimental/functional')
-rw-r--r-- | libstdc++-v3/include/experimental/functional | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/experimental/functional b/libstdc++-v3/include/experimental/functional index 4ecc6a5fb6d..5202e89cd61 100644 --- a/libstdc++-v3/include/experimental/functional +++ b/libstdc++-v3/include/experimental/functional @@ -61,7 +61,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION template<typename _Tp> constexpr int is_placeholder_v = std::is_placeholder<_Tp>::value; -#define __cpp_lib_experimental_boyer_moore_searching 201402 +#define __cpp_lib_experimental_boyer_moore_searching 201411 // Searchers |