clang-format
This commit is contained in:
parent
658a8bb080
commit
34bb44e490
1 changed files with 3 additions and 3 deletions
|
@ -231,21 +231,21 @@ class symbolizer_property_value_string
|
||||||
std::string operator()(mapnik::value_double val) const
|
std::string operator()(mapnik::value_double val) const
|
||||||
{
|
{
|
||||||
std::ostringstream ss;
|
std::ostringstream ss;
|
||||||
ss << val;
|
ss << val;
|
||||||
return ss.str();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string operator()(mapnik::value_integer val) const
|
std::string operator()(mapnik::value_integer val) const
|
||||||
{
|
{
|
||||||
std::ostringstream ss;
|
std::ostringstream ss;
|
||||||
ss << val;
|
ss << val;
|
||||||
return ss.str();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string operator()(mapnik::value_bool val) const
|
std::string operator()(mapnik::value_bool val) const
|
||||||
{
|
{
|
||||||
std::ostringstream ss;
|
std::ostringstream ss;
|
||||||
ss << mapnik::boolean_type(val);
|
ss << mapnik::boolean_type(val);
|
||||||
return ss.str();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue