Skip to content

Commit a9df7df

Browse files
Fix tiny_size_allocator::rebind.
1 parent bdca412 commit a9df7df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/test/support/min_allocator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ struct tiny_size_allocator {
481481

482482
template <class U>
483483
struct rebind {
484-
using other = tiny_size_allocator<MaxSize, T>;
484+
using other = tiny_size_allocator<MaxSize, U>;
485485
};
486486

487487
tiny_size_allocator() = default;

0 commit comments

Comments
 (0)