summaryrefslogtreecommitdiff
path: root/src/mbgl/util/dtoa.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/dtoa.hpp')
-rw-r--r--src/mbgl/util/dtoa.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/util/dtoa.hpp b/src/mbgl/util/dtoa.hpp
index e6b1659aa2..22aa925675 100644
--- a/src/mbgl/util/dtoa.hpp
+++ b/src/mbgl/util/dtoa.hpp
@@ -6,7 +6,7 @@
namespace mbgl {
namespace util {
-std::string dtoa(double value);
+std::string dtoa(double value, bool decimal = false);
inline double stod(const std::string& str) {
return ::strtod(str.c_str(), nullptr);