Skip to content

Commit d05b553

Browse files
authored
Fix compilation
1 parent e4fc044 commit d05b553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/string

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3244,7 +3244,7 @@ _LIBCPP_CONSTEXPR_SINCE_CXX20 void basic_string<_CharT, _Traits, _Allocator>::re
32443244
if (__requested_capacity <= capacity())
32453245
return;
32463246

3247-
__target_capacity = __recommend(__target_capacity);
3247+
size_type __target_capacity = __recommend(__target_capacity);
32483248
if (__target_capacity == capacity())
32493249
return;
32503250

0 commit comments

Comments
 (0)