[libcxx-commits] [libcxx] b19e823 - [libc++][NFC] Fixes code alignment.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Nov 13 10:11:34 PST 2021
Author: Mark de Wever
Date: 2021-11-13T19:11:24+01:00
New Revision: b19e823ff9de52f08bb2d35b91305b3c2d3dd0be
URL: https://github.com/llvm/llvm-project/commit/b19e823ff9de52f08bb2d35b91305b3c2d3dd0be
DIFF: https://github.com/llvm/llvm-project/commit/b19e823ff9de52f08bb2d35b91305b3c2d3dd0be.diff
LOG: [libc++][NFC] Fixes code alignment.
D112904 fixed some code alignment issues, but it seems only line was
omitted. (Found while resolving merge conflicts for my own patches.)
Added:
Modified:
libcxx/include/vector
Removed:
################################################################################
diff --git a/libcxx/include/vector b/libcxx/include/vector
index cfd2fc4aff2c..8f220720e467 100644
--- a/libcxx/include/vector
+++ b/libcxx/include/vector
@@ -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");
More information about the libcxx-commits
mailing list