MapLibre Native Core
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
undefined.hpp
Go to the documentation of this file.
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
bool operator==(const Undefined &, const Undefined &)
Definition: undefined.hpp:8
bool operator!=(const Undefined &, const Undefined &)
Definition: undefined.hpp:9
Definition: actor.hpp:15