fix #7906 [cpprest] add parameterToString for number type with unspecified format (double) (#7929)

This commit is contained in:
murzic4
2018-04-02 11:44:09 +03:00
committed by William Cheng
parent 23b31aba89
commit bad1885b47
4 changed files with 12 additions and 0 deletions

View File

@@ -51,6 +51,7 @@ public:
static utility::string_t parameterToString(int32_t value);
static utility::string_t parameterToString(int64_t value);
static utility::string_t parameterToString(float value);
static utility::string_t parameterToString(double value);
static utility::string_t parameterToString(const utility::datetime &value);
template<class T>
static utility::string_t parameterToString(const std::vector<T>& value);