fixed to_string() method for filter expressions

This commit is contained in:
Artem Pavlenko 2006-01-23 10:31:10 +00:00
parent 150f9dc99a
commit a7c154f223

View file

@ -68,12 +68,11 @@ namespace mapnik
}
std::string to_string() const
{
return "'"+value_.to_string()+"'";
return value_.to_string();
}
~literal() {}
private:
value value_;
};