0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-03 02:28:55 +02:00

ircd::buffer: Default construction for mutable_buffer for now.

This commit is contained in:
Jason Volk 2017-10-17 00:50:52 -07:00
parent 865270f70a
commit 59e136ff68

View file

@ -191,7 +191,8 @@ struct ircd::buffer::mutable_buffer_base
using buffer<T>::buffer;
mutable_buffer_base()
:buffer<iterator>{} {}
:buffer<iterator>{}
{}
template<size_t SIZE>
mutable_buffer_base(value_type (&buf)[SIZE])
@ -226,6 +227,8 @@ struct ircd::buffer::mutable_buffer
{
closure(*this);
}
mutable_buffer() = default;
};
/// A writable buffer of unsigned signed char data. Convention is for this
@ -250,6 +253,8 @@ struct ircd::buffer::mutable_raw_buffer
{
closure(*this);
}
mutable_raw_buffer() = default;
};
namespace ircd::buffer