summaryrefslogtreecommitdiff
path: root/boost/xpressive/regex_token_iterator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/xpressive/regex_token_iterator.hpp')
-rw-r--r--boost/xpressive/regex_token_iterator.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/boost/xpressive/regex_token_iterator.hpp b/boost/xpressive/regex_token_iterator.hpp
index 0eb18d57aa..7b09d0f6b6 100644
--- a/boost/xpressive/regex_token_iterator.hpp
+++ b/boost/xpressive/regex_token_iterator.hpp
@@ -11,7 +11,7 @@
#define BOOST_XPRESSIVE_REGEX_TOKEN_ITERATOR_HPP_EAN_10_04_2005
// MS compatible compilers support #pragma once
-#if defined(_MSC_VER) && (_MSC_VER >= 1020)
+#if defined(_MSC_VER)
# pragma once
#endif
@@ -194,6 +194,7 @@ struct regex_token_iterator
/// \param begin The beginning of the character range to search.
/// \param end The end of the character range to search.
/// \param rex The regex pattern to search for.
+ /// \param subs A range of integers designating sub-matches to be treated as tokens.
/// \param flags Optional match flags, used to control how the expression is matched against the sequence. (See match_flag_type.)
/// \pre \c [begin,end) is a valid range.
/// \pre \c subs is either an integer greater or equal to -1,
@@ -219,6 +220,7 @@ struct regex_token_iterator
/// \param begin The beginning of the character range to search.
/// \param end The end of the character range to search.
/// \param rex The regex pattern to search for.
+ /// \param subs A range of integers designating sub-matches to be treated as tokens.
/// \param args A let() expression with argument bindings for semantic actions.
/// \param flags Optional match flags, used to control how the expression is matched against the sequence. (See match_flag_type.)
/// \pre \c [begin,end) is a valid range.