diff options
| author | timshen <timshen@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-07-31 00:20:06 +0000 |
|---|---|---|
| committer | timshen <timshen@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-07-31 00:20:06 +0000 |
| commit | 0c74a6e2cddf69e38ddc4dbf93780a754889d248 (patch) | |
| tree | 6f28f5904f81a6e7ffe2c420956997e9b71741ff /libstdc++-v3/include/std | |
| parent | a303e990f29626926475ab9af3dd860a9be257a5 (diff) | |
| download | ppe42-gcc-0c74a6e2cddf69e38ddc4dbf93780a754889d248.tar.gz ppe42-gcc-0c74a6e2cddf69e38ddc4dbf93780a754889d248.zip | |
2013-07-31 Tim Shen <timshen91@gmail.com>
Thompson matcher refactored. Fix grouping problem.
* include/bits/regex.h: Use a dispatcher _M_get_matcher().
* include/bits/regex_compiler.h: Tweak for auto switching.
* include/bits/regex_grep_matcher.h: Class structure.
* include/bits/regex_grep_matcher.tcc: _BFSMatcher(Thompson
matcher) refactoring.
* include/bits/regex_nfa.h: Change _Results's interfaces.
* include/std/regex: Includes <map> and <queue>.
* testsuite/28_regex/algorithms/regex_match/extended/53622.cc:
For both matchers.
* testsuite/28_regex/algorithms/regex_match/extended/57173.cc:
For both matchers.
* testsuite/28_regex/algorithms/regex_match/extended/
string_dispatch_01.cc: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@201358 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/std')
| -rw-r--r-- | libstdc++-v3/include/std/regex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libstdc++-v3/include/std/regex b/libstdc++-v3/include/std/regex index 907f5bb65d8..b0918ed4afe 100644 --- a/libstdc++-v3/include/std/regex +++ b/libstdc++-v3/include/std/regex @@ -44,6 +44,8 @@ #include <iterator> #include <locale> #include <memory> +#include <map> +#include <queue> #include <set> #include <sstream> #include <stack> |

