Merge pull request #127 from Flamefire/patch-1

Fix ununsed parameter warning
This commit is contained in:
Andrzej Krzemieński
2024-08-16 20:11:36 +02:00
committed by GitHub

View File

@ -134,7 +134,7 @@ bool operator == ( optional<T> const& x, none_t ) BOOST_NOEXCEPT
template<class T>
inline
bool operator < ( optional<T> const& x, none_t )
bool operator < ( optional<T> const&, none_t )
{ return false; }
template<class T>