mirror of
https://github.com/matrix-construct/construct
synced 2025-01-16 17:46:54 +01:00
ircd::conf: Fix assumptional integer type.
This commit is contained in:
parent
8032e6cb0c
commit
fb230a6630
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ struct ircd::conf::lex_castable
|
||||||
}
|
}
|
||||||
,conf::value<T>
|
,conf::value<T>
|
||||||
(
|
(
|
||||||
feature.get("default", long(0))
|
feature.get("default", T(0))
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
call_init();
|
call_init();
|
||||||
|
|
Loading…
Reference in a new issue