mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 10:12:39 +01:00
ircd: Fix proper default constexpr ctor.
This commit is contained in:
parent
2ef5f4c72c
commit
7021250cc3
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ struct ircd::string_view
|
||||||
/// Our default constructor sets the elements to 0 for best behavior by
|
/// Our default constructor sets the elements to 0 for best behavior by
|
||||||
/// defined() and null() et al.
|
/// defined() and null() et al.
|
||||||
constexpr string_view()
|
constexpr string_view()
|
||||||
:std::string_view{nullptr, 0}
|
:std::string_view{}
|
||||||
{}
|
{}
|
||||||
|
|
||||||
using std::string_view::string_view;
|
using std::string_view::string_view;
|
||||||
|
|
Loading…
Reference in a new issue