blob: e43f132a80ee11fb362ca46e574ed2329f888f18 [file] [log] [blame]
#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