blob: e43f132a80ee11fb362ca46e574ed2329f888f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
namespace mbgl {
namespace style {
class Undefined {};
inline bool operator==(const Undefined&, const Undefined&) { return true; }
inline bool operator!=(const Undefined&, const Undefined&) { return false; }
} // namespace style
} // namespace mbgl
|