summaryrefslogtreecommitdiff
path: root/include/mbgl/style/function/identity_stops.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/function/identity_stops.hpp')
-rw-r--r--include/mbgl/style/function/identity_stops.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/mbgl/style/function/identity_stops.hpp b/include/mbgl/style/function/identity_stops.hpp
deleted file mode 100644
index 741ebbbe0c..0000000000
--- a/include/mbgl/style/function/identity_stops.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include <mbgl/util/feature.hpp>
-
-namespace mbgl {
-namespace style {
-
-template <class T>
-class IdentityStops {
-public:
- optional<T> evaluate(const Value&) const;
-
- friend bool operator==(const IdentityStops&,
- const IdentityStops&) {
- return true;
- }
-};
-
-} // namespace style
-} // namespace mbgl