summaryrefslogtreecommitdiff
path: root/include/mbgl/style/conversion.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/conversion.hpp')
-rw-r--r--include/mbgl/style/conversion.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mbgl/style/conversion.hpp b/include/mbgl/style/conversion.hpp
index bd7db3adfb..e53adcb942 100644
--- a/include/mbgl/style/conversion.hpp
+++ b/include/mbgl/style/conversion.hpp
@@ -2,6 +2,8 @@
#include <mbgl/util/variant.hpp>
+#include <string>
+
namespace mbgl {
namespace style {
namespace conversion {
@@ -53,7 +55,7 @@ namespace conversion {
them for v8 types.
*/
-struct Error { const char * message; };
+struct Error { std::string message; };
template <class T>
class Result : private variant<T, Error> {