Bill Fisher: This patch fixes a bug where std::regex in ECMAScript mode was ignoring...
authorHoward Hinnant <hhinnant@apple.com>
Tue, 23 Jul 2013 16:18:04 +0000 (16:18 +0000)
committerHoward Hinnant <hhinnant@apple.com>
Tue, 23 Jul 2013 16:18:04 +0000 (16:18 +0000)
commit7491a160311b10bd073b65233787b932f9d79675
tree2c75e840df27279f7563be6d5d2e45beabd9e4fe
parent9b3d2c026039a3a888de78ee86ccf1da3cf01dca
Bill Fisher: This patch fixes a bug where std::regex in ECMAScript mode was ignoring capture groups inside lookahead assertions.

For example, matching /(?=(a))(a)/ to "a" should yield two captures: \1 = "a", \2 = "a"

llvm-svn: 186954
libcxx/include/regex
libcxx/test/re/re.alg/re.alg.match/lookahead_capture.pass.cpp [new file with mode: 0644]