blob: 1e0f512ba83f1214d39f0361038b1a3f17cb8e39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#pragma once
#include <string>
#include <cstdlib>
#include <type_traits>
// Polyfill needed by Qt when building for Android with GCC
#if defined(__ANDROID__) && defined(__GLIBCXX__)
namespace std {
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
namespace mbgl {
namespace util {
std::string toString(int64_t);
std::string toString(uint64_t);
std::string toString(int32_t);
std::string toString(uint32_t);
std::string toString(double, bool decimal = false);
inline std::string toString(int16_t t) {
return toString(static_cast<int32_t>(t));
}
inline std::string toString(uint16_t t) {
return toString(static_cast<uint32_t>(t));
}
inline std::string toString(int8_t t) {
return toString(static_cast<int32_t>(t));
}
inline std::string toString(uint8_t t) {
return toString(static_cast<uint32_t>(t));
}
template <typename = std::enable_if<!std::is_same<uint64_t, unsigned long>::value>>
inline std::string toString(unsigned long t) {
return toString(static_cast<uint64_t>(t));
}
template <typename = std::enable_if<!std::is_same<uint64_t, unsigned long long>::value>>
inline std::string toString(unsigned long long t) {
return toString(static_cast<uint64_t>(t));
}
inline std::string toString(float t, bool decimal = false) {
return toString(static_cast<double>(t), decimal);
}
inline std::string toString(long double t, bool decimal = false) {
return toString(static_cast<double>(t), decimal);
}
std::string toString(std::exception_ptr);
template <class T>
std::string toString(T) = delete;
std::string toHex(uint32_t);
std::string toHex(uint64_t);
inline float stof(const std::string& str) {
return std::stof(str);
}
} // namespace util
} // namespace mbgl
// Android's libstdc++ doesn't have std::to_string()
#if defined(__ANDROID__) && defined(__GLIBCXX__)
namespace std {
template <typename T>
inline std::string to_string(T value) {
return mbgl::util::toString(value);
}
} // namespace std
#endif
|