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