1 #pragma once
2 
3 #include <mbgl/style/expression/type.hpp>
4 #include <mbgl/util/optional.hpp>
5 #include <memory>
6 
7 namespace mbgl {
8 namespace style {
9 namespace expression {
10 namespace type {
11 
12 optional<std::string> checkSubtype(const Type& expected, const Type& t);
13 
14 } // namespace type
15 } // namespace expression
16 } // namespace style
17 } // namespace mbgl
18