diff options
author | timshen <timshen@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-03-15 18:16:22 +0000 |
---|---|---|
committer | timshen <timshen@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-03-15 18:16:22 +0000 |
commit | 7421bffd9f98b99812274b258c3e228708d1a9fa (patch) | |
tree | acf1348b8279a9ceedc9bf6aca7c793dbdf59cf8 /libstdc++-v3/include/bits/regex.h | |
parent | 8f07aabd75bf01b61c9b0b127a77c763cb0466c2 (diff) | |
download | ppe42-gcc-7421bffd9f98b99812274b258c3e228708d1a9fa.tar.gz ppe42-gcc-7421bffd9f98b99812274b258c3e228708d1a9fa.zip |
2014-03-15 Tim Shen <timshen91@gmail.com>
* include/bits/regex.h: Add/modify comments.
* include/bits/regex_compiler.h: Likewise.
* include/bits/regex_executor.h: Likewise.
* include/bits/regex_executor.tcc: Likewise.
* include/bits/regex_scanner.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208593 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits/regex.h')
-rw-r--r-- | libstdc++-v3/include/bits/regex.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/include/bits/regex.h b/libstdc++-v3/include/bits/regex.h index 816f5cfb004..e556350adca 100644 --- a/libstdc++-v3/include/bits/regex.h +++ b/libstdc++-v3/include/bits/regex.h @@ -78,7 +78,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION */ /** - * @brief Class regex_traits. Describes aspects of a regular expression. + * @brief Describes aspects of a regular expression. * * A regular expression traits class that satisfies the requirements of * section [28.7]. @@ -2098,8 +2098,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // [7.11.3] Function template regex_search /** * Searches for a regular expression within a range. - * @param __first [IN] The start of the string to search. - * @param __last [IN] One-past-the-end of the string to search. + * @param __s [IN] The start of the string to search. + * @param __e [IN] One-past-the-end of the string to search. * @param __m [OUT] The match results. * @param __re [IN] The regular expression to search for. * @param __flags [IN] Search policy flags. |