]> git.ipfire.org Git - thirdparty/gcc.git/commit
Makefile.am: Add regex_scanner.{h,tcc}.
authorTim Shen <timshen91@gmail.com>
Tue, 27 Aug 2013 02:49:22 +0000 (02:49 +0000)
committerTim Shen <timshen@gcc.gnu.org>
Tue, 27 Aug 2013 02:49:22 +0000 (02:49 +0000)
commit33fbbb766cde302f16aca2208e25610c11484388
tree2152998d3b362b24cc7f901c04a1249d8fe40c68
parentfd91cfe3e0a62ff045811a6dc2fcce2930eef0b3
Makefile.am: Add regex_scanner.{h,tcc}.

2013-08-26  Tim Shen  <timshen91@gmail.com>

* include/Makefile.am: Add regex_scanner.{h,tcc}.
* include/Makefile.in: Regenerate.
* include/bits/regex.h (match_search): Handle the `__first == __last`
  situation correctly.
* include/bits/regex_compiler.h: Move _Scanner...
* include/bits/regex_scanner.h: ...to here. New.
* include/bits/regex_compiler.tcc: Move _Scanner...
* include/bits/regex_scanner.tcc: ...to here, too. New.
* include/bits/regex_executor.tcc: Use value instead of reference for
  submatch.
* include/std/regex: Add regex_scanner.h
* testsuite/28_regex/algorithms/regex_match/awk/cstring_01.cc: New.
* testsuite/28_regex/algorithms/regex_match/basic/empty_range.cc: New.
* testsuite/28_regex/algorithms/regex_match/ecma/cstring_hex.cc: New.
* testsuite/28_regex/algorithms/regex_match/ecma/empty_range.cc: New.
* testsuite/28_regex/algorithms/regex_search/ecma/string_01.cc: New.

From-SVN: r202015
15 files changed:
libstdc++-v3/ChangeLog
libstdc++-v3/include/Makefile.am
libstdc++-v3/include/Makefile.in
libstdc++-v3/include/bits/regex.h
libstdc++-v3/include/bits/regex_compiler.h
libstdc++-v3/include/bits/regex_compiler.tcc
libstdc++-v3/include/bits/regex_executor.tcc
libstdc++-v3/include/bits/regex_scanner.h [new file with mode: 0644]
libstdc++-v3/include/bits/regex_scanner.tcc [new file with mode: 0644]
libstdc++-v3/include/std/regex
libstdc++-v3/testsuite/28_regex/algorithms/regex_match/awk/cstring_01.cc [new file with mode: 0644]
libstdc++-v3/testsuite/28_regex/algorithms/regex_match/basic/empty_range.cc [new file with mode: 0644]
libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/cstring_hex.cc [new file with mode: 0644]
libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/empty_range.cc [new file with mode: 0644]
libstdc++-v3/testsuite/28_regex/algorithms/regex_search/ecma/string_01.cc [new file with mode: 0644]