Skip to content

Commit 937a5fb

Browse files
committed
Use std::size_t
1 parent 7f1e52c commit 937a5fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/nonstd/string.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,8 +1073,8 @@ replace_all( std17::basic_string_view<CharT> text, std17::basic_string_view<Char
10731073
string_nodiscard inline std::basic_string<CharT> \
10741074
replace( \
10751075
std17::basic_string_view<CharT> text \
1076-
, size_t pos \
1077-
, size_t len \
1076+
, std::size_t pos \
1077+
, std::size_t len \
10781078
, std17::basic_string_view<CharT> what ) \
10791079
{ \
10801080
return \

0 commit comments

Comments
 (0)