0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-24 17:38:54 +02:00

ircd::stats: Converge on a single callpath to get val.

This commit is contained in:
Jason Volk 2019-07-14 11:17:53 -07:00
parent c92b6aafd5
commit ee341f193d

View file

@ -99,20 +99,20 @@ inline bool
ircd::stats::item::operator!()
const
{
return !val;
return !get(*this);
}
inline ircd::stats::item::operator
value_type &()
{
return val;
return get(*this);
}
inline ircd::stats::item::operator
const value_type &()
const
{
return val;
return get(*this);
}
inline ircd::stats::value_type &