Skip to content

Commit d907f23

Browse files
Fix formatting
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9859f3d commit d907f23

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

include/beman/inplace_vector/inplace_vector.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,9 @@ struct inplace_vector
738738
constexpr void assign_range(R &&rg)
739739
requires(std::constructible_from<T, std::ranges::range_reference_t<R>> &&
740740
std::movable<T>)
741-
BEMAN_IV_FREESTANDING_DELETE({ assign(std::ranges::begin(rg), std::ranges::end(rg)); });
741+
BEMAN_IV_FREESTANDING_DELETE({
742+
assign(std::ranges::begin(rg), std::ranges::end(rg));
743+
});
742744
constexpr void assign(size_type n, const T &u)
743745
requires(std::constructible_from<T, const T &> && std::movable<T>)
744746
BEMAN_IV_FREESTANDING_DELETE({

0 commit comments

Comments
 (0)