File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class BasicStringClassifier
93
93
* Converts the given character to an upper-case alphabetic character as classified by the
94
94
* default C locale.
95
95
*
96
- * The STL's std:tosupper and std::towupper require that the provided character fits into an
96
+ * The STL's std:toupper and std::towupper require that the provided character fits into an
97
97
* unsigned char and unsigned wchar_t, respectively. Other values result in undefined behavior.
98
98
* This method has no such restriction.
99
99
*
@@ -107,7 +107,7 @@ class BasicStringClassifier
107
107
* Converts the given character to a lower-case alphabetic character as classified by the
108
108
* default C locale.
109
109
*
110
- * The STL's std:toslower and std::towlower require that the provided character fits into an
110
+ * The STL's std:tolower and std::towlower require that the provided character fits into an
111
111
* unsigned char and unsigned wchar_t, respectively. Other values result in undefined behavior.
112
112
* This method has no such restriction.
113
113
*
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ class BasicString
125
125
* Converts the given character to an upper-case alphabetic character as classified by the
126
126
* default C locale.
127
127
*
128
- * The STL's std:tosupper and std::towupper require that the provided character fits into an
128
+ * The STL's std:toupper and std::towupper require that the provided character fits into an
129
129
* unsigned char and unsigned wchar_t, respectively. Other values result in undefined behavior.
130
130
* This method has no such restriction.
131
131
*
@@ -139,7 +139,7 @@ class BasicString
139
139
* Converts the given character to a lower-case alphabetic character as classified by the
140
140
* default C locale.
141
141
*
142
- * The STL's std:toslower and std::towlower require that the provided character fits into an
142
+ * The STL's std:tolower and std::towlower require that the provided character fits into an
143
143
* unsigned char and unsigned wchar_t, respectively. Other values result in undefined behavior.
144
144
* This method has no such restriction.
145
145
*
@@ -495,7 +495,7 @@ class BasicString
495
495
// ==================================================================================================
496
496
template <typename StringType>
497
497
template <typename T, enable_if<detail::is_like_supported_string<T>>>
498
- constexpr auto BasicString<StringType>::size(T &&value) -> size_type
498
+ constexpr inline auto BasicString<StringType>::size(T &&value) -> size_type
499
499
{
500
500
return classifier::size (std::forward<T>(value));
501
501
}
You can’t perform that action at this time.
0 commit comments