Skip to content

Commit fbc90a6

Browse files
committed
clang-format *again*
This one is particularly annoying because my local run of git-clang-format didn't pick it up and I had to round-trip through official CI to even find out there was a problem!
1 parent 5bcb59a commit fbc90a6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

libcxx/include/string

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,10 @@ private:
848848
// up to the nearest multiple of the alignment. That's the total size of the
849849
// structure.
850850
enum { __short_packed_size = sizeof(value_type) * __min_cap + 1 };
851-
union __union_alignment_check { __long_min __long_; value_type v; };
851+
union __union_alignment_check {
852+
__long_min __long_;
853+
value_type v;
854+
};
852855
enum { __union_alignment = _LIBCPP_ALIGNOF(__union_alignment_check) };
853856
enum { __full_size = (__short_packed_size + __union_alignment - 1) & -__union_alignment };
854857

0 commit comments

Comments
 (0)