Remove using Result

This commit is contained in:
Siarhei Fedartsou 2024-05-21 21:19:32 +02:00 committed by GitHub
parent b6942d079b
commit 9ddb27ef60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,6 @@ template <typename Key, typename Value> struct LookupTable
std::optional<Value> operator()(const Key &key) const
{
using Result = std::optional<Value>;
using Result = boost::optional<Value>;
const auto it =
std::lower_bound(lookup.begin(),
lookup.end(),