summaryrefslogtreecommitdiff
path: root/src/mbgl/style/value.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/value.hpp')
-rw-r--r--src/mbgl/style/value.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/style/value.hpp b/src/mbgl/style/value.hpp
index c5be450916..869ddd6668 100644
--- a/src/mbgl/style/value.hpp
+++ b/src/mbgl/style/value.hpp
@@ -1,7 +1,7 @@
#ifndef MBGL_STYLE_VALUE
#define MBGL_STYLE_VALUE
-#include <mapbox/variant.hpp>
+#include <mbgl/util/variant.hpp>
#include <mbgl/util/rapidjson.hpp>
#include <cstdlib>
@@ -9,7 +9,7 @@
namespace mbgl {
-typedef mapbox::util::variant<bool, int64_t, uint64_t, double, std::string> Value;
+typedef variant<bool, int64_t, uint64_t, double, std::string> Value;
std::string toString(const Value &value);