We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff463a commit 3ec2600Copy full SHA for 3ec2600
include/beman/inplace_vector/inplace_vector.hpp
@@ -69,8 +69,9 @@ struct inplace_vector_type_based_storage {
69
constexpr const T *begin() const { return elems.data(); }
70
};
71
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.
+// byte based storage is used for non-constexpr environment. Objects of type T
+// are only constructed when needed and they don't even have to be default
74
+// constructible.
75
//
76
// Selecting this storage type implies: !std::is_trivial_v<T> and Capacity != 0
77
template <typename T, std::size_t Capacity>
0 commit comments