summaryrefslogtreecommitdiff
path: root/src/mbgl/style/filter_evaluator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/filter_evaluator.hpp')
-rw-r--r--src/mbgl/style/filter_evaluator.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mbgl/style/filter_evaluator.hpp b/src/mbgl/style/filter_evaluator.hpp
index 27402ac211..0f3ee2a424 100644
--- a/src/mbgl/style/filter_evaluator.hpp
+++ b/src/mbgl/style/filter_evaluator.hpp
@@ -121,6 +121,16 @@ private:
!std::is_arithmetic<T1>::value || std::is_same<T1, bool>::value, bool> {
return false;
}
+
+ bool operator()(const std::vector<Value>&,
+ const std::vector<Value>&) const {
+ return false;
+ }
+
+ bool operator()(const std::unordered_map<std::string, Value>&,
+ const std::unordered_map<std::string, Value>&) const {
+ return false;
+ }
};
template <class Op>