Skip to content

Commit 3ec2600

Browse files
Update include/beman/inplace_vector/inplace_vector.hpp
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5ff463a commit 3ec2600

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

include/beman/inplace_vector/inplace_vector.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ struct inplace_vector_type_based_storage {
6969
constexpr const T *begin() const { return elems.data(); }
7070
};
7171

72-
// byte based storage is used for non-constexpr environment. Objects of type T are only
73-
// constructed when needed and they don't even have to be default constructible.
72+
// byte based storage is used for non-constexpr environment. Objects of type T
73+
// are only constructed when needed and they don't even have to be default
74+
// constructible.
7475
//
7576
// Selecting this storage type implies: !std::is_trivial_v<T> and Capacity != 0
7677
template <typename T, std::size_t Capacity>

0 commit comments

Comments
 (0)