0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-27 07:54:05 +01:00

ircd: Add default construction for byte_view<string_view>.

This commit is contained in:
Jason Volk 2018-03-24 22:48:43 -07:00
parent 907f2d0435
commit f60aad8753

View file

@ -60,7 +60,7 @@ struct ircd::byte_view<ircd::string_view>
{} {}
/// string_view -> string_view (completeness) /// string_view -> string_view (completeness)
byte_view(const string_view &t) byte_view(const string_view &t = {})
:string_view{t} :string_view{t}
{} {}
}; };