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:
parent
907f2d0435
commit
f60aad8753
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue