Skip to content

Commit

Permalink
[libc++][NFC] Fixes code alignment.
Browse files Browse the repository at this point in the history
D112904 fixed some code alignment issues, but it seems only line was
omitted. (Found while resolving merge conflicts for my own patches.)
  • Loading branch information
mordante committed Nov 13, 2021
1 parent c972175 commit b19e823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/include/vector
Expand Up @@ -366,7 +366,7 @@ public:
typedef __wrap_iter<pointer> iterator;
typedef __wrap_iter<const_pointer> const_iterator;
typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;

static_assert((is_same<typename allocator_type::value_type, value_type>::value),
"Allocator::value_type must be same type as value_type");
Expand Down

0 comments on commit b19e823

Please sign in to comment.