mirror of
https://github.com/matrix-construct/construct
synced 2025-02-18 09:40:12 +01:00
fixup! fixup! ircd: Minor cleanup.
This commit is contained in:
parent
fe90841b8a
commit
ca98521265
2 changed files with 3 additions and 1 deletions
|
@ -654,6 +654,7 @@ ircd::lex_cast(T t,
|
|||
const size_t &max)
|
||||
{
|
||||
assert(0);
|
||||
return {};
|
||||
}
|
||||
|
||||
template<>
|
||||
|
@ -683,4 +684,5 @@ bool
|
|||
ircd::try_lex_cast(const string_view &s)
|
||||
{
|
||||
assert(0);
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ class params
|
|||
{
|
||||
string_view in;
|
||||
const char *sep;
|
||||
std::initializer_list<const char *> names;
|
||||
std::vector<const char *> names;
|
||||
|
||||
const char *name(const size_t &i) const;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue