summaryrefslogtreecommitdiff
path: root/include/mbgl/util/expected.hpp
blob: 135de3cf9b9f582dfcdfd340add0fe60b411b007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <expected.hpp>

namespace mbgl {

template <class T, class E>
using expected = nonstd::expected<T, E>;

template <class E>
using unexpected = nonstd::unexpected_type<E>;

} // namespace mbgl