diff --git a/include/expression.hpp b/include/expression.hpp index db4715927..6afc32c64 100644 --- a/include/expression.hpp +++ b/include/expression.hpp @@ -68,12 +68,11 @@ namespace mapnik } std::string to_string() const { - return "'"+value_.to_string()+"'"; + return value_.to_string(); } ~literal() {} private: value value_; - };