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