summaryrefslogtreecommitdiff
path: root/boost/xpressive/traits/c_regex_traits.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/xpressive/traits/c_regex_traits.hpp')
-rw-r--r--boost/xpressive/traits/c_regex_traits.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/boost/xpressive/traits/c_regex_traits.hpp b/boost/xpressive/traits/c_regex_traits.hpp
index 805dcd3773..595ee921a3 100644
--- a/boost/xpressive/traits/c_regex_traits.hpp
+++ b/boost/xpressive/traits/c_regex_traits.hpp
@@ -12,7 +12,7 @@
#define BOOST_XPRESSIVE_TRAITS_C_REGEX_TRAITS_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
@@ -113,7 +113,7 @@ struct regex_traits_version_1_tag;
// c_regex_traits
//
/// \brief Encapsaulates the standard C locale functions for use by the
-/// basic_regex\<\> class template.
+/// \c basic_regex\<\> class template.
template<typename Char>
struct c_regex_traits
: detail::c_regex_traits_base<Char>
@@ -200,12 +200,12 @@ struct c_regex_traits
return detail::c_toupper(ch);
}
- /// Returns a string_type containing all the characters that compare equal
+ /// Returns a \c string_type containing all the characters that compare equal
/// disregrarding case to the one passed in. This function can only be called
- /// if has_fold_case<c_regex_traits<Char> >::value is true.
+ /// if <tt>has_fold_case\<c_regex_traits\<Char\> \>::value</tt> is \c true.
///
/// \param ch The source character.
- /// \return string_type containing all chars which are equal to ch when disregarding
+ /// \return \c string_type containing all chars which are equal to \c ch when disregarding
/// case
//typedef array<char_type, 2> fold_case_type;
string_type fold_case(char_type ch) const