Skip to content

Commit

Permalink
Fix whitespace and newlines (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbcoe authored Mar 21, 2024
1 parent a7dfff5 commit a7fa0db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions DRAFT.md
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ constexpr indirect(allocator_arg_t, const Allocator& a, indirect&& other)
22. _Mandates_: If `allocator_traits<allocator_type>::is_always_equal::value`
is `false`, `T` is a complete type.
23. _Effects_: `alloc` is direct-non-list-initialized with `a`. If `other` is
valueless, `*this` is valueless. Otherwise, if `alloc == other.alloc`
constructs an object of type `indirect` that owns the owned object of other;
Expand Down Expand Up @@ -903,7 +903,7 @@ constexpr indirect& operator=(indirect&& other) noexcept(

5. _Mandates_: If `allocator_traits<allocator_type>::is_always_equal::value`
is `false`, `T` is a complete type.

6. _Effects_: If
`allocator_traits<allocator_type>::propagate_on_container_move_assignment` is
`true` and `alloc != other.alloc` then the allocator needs updating.
Expand Down Expand Up @@ -1298,7 +1298,7 @@ constexpr polymorphic(allocator_arg_t, const Allocator& a,
```
1. _Mandates_: `T` is a complete type.
21. _Effects_: `alloc` is direct-non-list-initialized with `a`. If `other` is
valueless, `*this` is valueless. Otherwise, if `alloc == other.alloc` either
constructs an object of type `polymorphic` that owns the owned object of
Expand Down Expand Up @@ -1363,7 +1363,7 @@ constexpr polymorphic& operator=(polymorphic&& other) noexcept(

5. _Mandates_: If `allocator_traits<allocator_type>::is_always_equal::value`
is `false`, `T` is a complete type.

6. _Effects_: If `other == *this` then no effect.

If `allocator_traits<allocator_type>::propagate_on_container_copy_assignment` is
Expand Down

0 comments on commit a7fa0db

Please sign in to comment.