summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2018-10-18 20:23:09 +0200
committerKonstantin Käfer <mail@kkaefer.com>2018-10-23 12:23:40 +0200
commit59c5754fa8225d8f1f674b2589d4be29e0716dd6 (patch)
tree7c3e199aee521d4b85d6f22d50cface61a5e0bcb
parent8bf66ef7a71ea220f2ed30ddd7feda28805dde41 (diff)
downloadqtlocation-mapboxgl-59c5754fa8225d8f1f674b2589d4be29e0716dd6.tar.gz
[core] remove special case for Windows
-rw-r--r--src/mbgl/util/dtoa.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mbgl/util/dtoa.cpp b/src/mbgl/util/dtoa.cpp
index 934a78f7ab..844d50b745 100644
--- a/src/mbgl/util/dtoa.cpp
+++ b/src/mbgl/util/dtoa.cpp
@@ -1,18 +1,10 @@
#include "dtoa.hpp"
-// Clang/C2 on Windows 64-bits can't parse rapidjson's dtoa
-// and it was causing the compiler to crash.
-#if !defined(_WINDOWS)
#include <rapidjson/internal/dtoa.h>
-#endif
-
-#include <mbgl/util/string.hpp>
namespace mbgl {
namespace util {
-#if !defined(_WINDOWS)
-
std::string dtoa(double value, bool decimal) {
std::string data;
data.resize(25);
@@ -26,13 +18,5 @@ std::string dtoa(double value, bool decimal) {
return data;
}
-#else
-
-std::string dtoa(double value) {
- return std::to_string(value);
-}
-
-#endif
-
} // namespace util
} // namespace mbgl