aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2019-09-25 13:31:53 +0100
committerJonathan Wakely <redi@gcc.gnu.org>2019-09-25 13:31:53 +0100
commit21f7f9980c078080189ca78e4da56f0c26736946 (patch)
tree27e0f59226886b3b7a3d66a1a4f91aa98210744f
parent48bea5dff4ced6dc87f08f615fcce5358606b0ba (diff)
downloadgcc-21f7f9980c078080189ca78e4da56f0c26736946.zip
gcc-21f7f9980c078080189ca78e4da56f0c26736946.tar.gz
gcc-21f7f9980c078080189ca78e4da56f0c26736946.tar.bz2
Implement LWG 3296 for basic_regex::assign
* include/bits/regex.h (basic_regex::assign(const C*, size_t, flag_type)): Add default argument (LWG 3296). * testsuite/28_regex/basic_regex/assign/char/lwg3296.cc: New test. * testsuite/28_regex/basic_regex/assign/wchar_t/lwg3296.cc: New test. From-SVN: r276121
-rw-r--r--libstdc++-v3/ChangeLog8
-rw-r--r--libstdc++-v3/include/bits/regex.h4
-rw-r--r--libstdc++-v3/testsuite/28_regex/basic_regex/assign/char/lwg3296.cc36
-rw-r--r--libstdc++-v3/testsuite/28_regex/basic_regex/assign/wchar_t/lwg3296.cc36
4 files changed, 83 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 7daabe5..cd46ef3 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,11 @@
+2019-09-25 Jonathan Wakely <jwakely@redhat.com>
+
+ * include/bits/regex.h
+ (basic_regex::assign(const C*, size_t, flag_type)): Add default
+ argument (LWG 3296).
+ * testsuite/28_regex/basic_regex/assign/char/lwg3296.cc: New test.
+ * testsuite/28_regex/basic_regex/assign/wchar_t/lwg3296.cc: New test.
+
2019-09-24 Jonathan Wakely <jwakely@redhat.com>
* include/std/variant (variant::index()): Remove impossible case.
diff --git a/libstdc++-v3/include/bits/regex.h b/libstdc++-v3/include/bits/regex.h
index b30b41a..7869c3f 100644
--- a/libstdc++-v3/include/bits/regex.h
+++ b/libstdc++-v3/include/bits/regex.h
@@ -628,8 +628,10 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
* expression pattern interpreted according to @p __flags. If
* regex_error is thrown, *this remains unchanged.
*/
+ // _GLIBCXX_RESOLVE_LIB_DEFECTS
+ // 3296. Inconsistent default argument for basic_regex<>::assign
basic_regex&
- assign(const _Ch_type* __p, std::size_t __len, flag_type __flags)
+ assign(const _Ch_type* __p, size_t __len, flag_type __flags = ECMAScript)
{ return this->assign(string_type(__p, __len), __flags); }
/**
diff --git a/libstdc++-v3/testsuite/28_regex/basic_regex/assign/char/lwg3296.cc b/libstdc++-v3/testsuite/28_regex/basic_regex/assign/char/lwg3296.cc
new file mode 100644
index 0000000..29256bb
--- /dev/null
+++ b/libstdc++-v3/testsuite/28_regex/basic_regex/assign/char/lwg3296.cc
@@ -0,0 +1,36 @@
+// Copyright (C) 2019 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3. If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-do run { target c++11 } }
+
+#include <regex>
+#include <testsuite_hooks.h>
+
+void
+test01()
+{
+ std::regex r("", std::regex_constants::grep);
+ r.assign("(.)[", 3); // LWG 3296
+ VERIFY( r.flags() == std::regex_constants::ECMAScript );
+ VERIFY( r.mark_count() == 1 );
+}
+
+int
+main()
+{
+ test01();
+}
diff --git a/libstdc++-v3/testsuite/28_regex/basic_regex/assign/wchar_t/lwg3296.cc b/libstdc++-v3/testsuite/28_regex/basic_regex/assign/wchar_t/lwg3296.cc
new file mode 100644
index 0000000..302ebd6
--- /dev/null
+++ b/libstdc++-v3/testsuite/28_regex/basic_regex/assign/wchar_t/lwg3296.cc
@@ -0,0 +1,36 @@
+// Copyright (C) 2019 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library. This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3. If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-do run { target c++11 } }
+
+#include <regex>
+#include <testsuite_hooks.h>
+
+void
+test01()
+{
+ std::wregex r(L"", std::regex_constants::grep);
+ r.assign(L"(.)[", 3); // LWG 3296
+ VERIFY( r.flags() == std::regex_constants::ECMAScript );
+ VERIFY( r.mark_count() == 1 );
+}
+
+int
+main()
+{
+ test01();
+}