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 6d1ef4d commit 2a7c9e8Copy full SHA for 2a7c9e8
1 file changed
include/BufferStream.h
@@ -69,7 +69,7 @@ concept BufferStreamResizableContiguousContainerConst = BufferStreamPossiblyNonC
69
};
70
71
/// STL container types that can hold POD type values but can't be used as buffer storage.
72
-/// Guarantees T::clear() and T::push_back(T::value_type) are defined, on top of BufferStreamNonContiguousContainer.
+/// Guarantees T::clear() and T::push_back(T::value_type) are defined, on top of BufferStreamPossiblyNonContiguousContainer.
73
template<typename T>
74
concept BufferStreamPossiblyNonContiguousResizableContainer = BufferStreamPossiblyNonContiguousContainer<T> && requires(T& t) {
75
{t.clear()} -> std::same_as<void>;
0 commit comments