Changeset 95973 in vbox for trunk/include
- Timestamp:
- Aug 2, 2022 12:49:13 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/ministring.h
r95336 r95973 1095 1095 */ 1096 1096 size_t find(const char *pszNeedle, size_t offStart = 0) const RT_NOEXCEPT; 1097 size_t find_first_of(const char *pszNeedle, size_t offStart = 0) const RT_NOEXCEPT 1098 { return find(pszNeedle, offStart); } 1097 1099 1098 1100 /** … … 1127 1129 */ 1128 1130 size_t find(const RTCString &rStrNeedle, size_t offStart = 0) const RT_NOEXCEPT; 1131 size_t find_first_of(const RTCString &rStrNeedle, size_t offStart = 0) const RT_NOEXCEPT 1132 { return find(rStrNeedle, offStart); } 1129 1133 1130 1134 /** … … 1141 1145 */ 1142 1146 size_t find(char chNeedle, size_t offStart = 0) const RT_NOEXCEPT; 1147 size_t find_first_of(char chNeedle, size_t offStart = 0) const RT_NOEXCEPT 1148 { return find(chNeedle, offStart); } 1143 1149 1144 1150 /**
Note:
See TracChangeset
for help on using the changeset viewer.