old mode 100755
new mode 100644
| | |
| | | LINPHONE_PUBLIC std::string toString (long double val); |
| | | LINPHONE_PUBLIC std::string toString (const void *val); |
| | | |
| | | template<typename T> |
| | | LINPHONE_PUBLIC inline std::string toString (const T &val) { |
| | | std::ostringstream ss; |
| | | ss << val; |
| | | return ss.str(); } |
| | | template<typename T, typename = typename std::enable_if<IsDefinedEnum<T>::value, T>::type> |
| | | LINPHONE_PUBLIC inline std::string toString (const T &val) { return getEnumValueAsString(val); } |
| | | |
| | | LINPHONE_PUBLIC int stoi (const std::string &str, size_t *idx = 0, int base = 10); |
| | | LINPHONE_PUBLIC long long stoll (const std::string &str, size_t *idx = 0, int base = 10); |