0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-25 16:22:35 +01:00

ircd::conf: Use noexcept per recommendation.

This commit is contained in:
Jason Volk 2019-02-15 17:11:20 -08:00
parent 23a04dee6a
commit 440cada550

View file

@ -105,7 +105,7 @@ struct ircd::conf::value
T _value;
operator const T &() const
operator const T &() const noexcept
{
return _value;
}