diff options
author | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-11-10 20:04:20 -0200 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-11-12 13:17:57 -0200 |
commit | 92608f58858d77c17a65ae9b29758e74bb2da7d2 (patch) | |
tree | f4b0287febdea20ae58d4dc31be294d50253b254 /include/mbgl/util | |
parent | 465b345dd2d9e8ff95accecc84b6ec6ff24e0a2f (diff) | |
download | qtlocation-mapboxgl-92608f58858d77c17a65ae9b29758e74bb2da7d2.tar.gz |
[core] Fix build on Android + GCC and Android + armeabi
Sadly we don't have bots for these two setups.
Diffstat (limited to 'include/mbgl/util')
-rw-r--r-- | include/mbgl/util/string.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/mbgl/util/string.hpp b/include/mbgl/util/string.hpp index 82d317c620..13498ccb92 100644 --- a/include/mbgl/util/string.hpp +++ b/include/mbgl/util/string.hpp @@ -25,6 +25,10 @@ inline int stoi(const std::string &str) return atoi(str.c_str()); } +inline float stof(const std::string &str) { + return static_cast<float>(atof(str.c_str())); +} + } // namespace std #endif @@ -65,5 +69,9 @@ inline std::string toString(std::exception_ptr error) { } } +inline float stof(const std::string& str) { + return std::stof(str); +} + } // namespace util } // namespace mbgl |