1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-13 20:21:48 +03:00

Kill unused argument warnings in GCC/clang

This commit is contained in:
Trevor Welsby
2016-01-25 02:13:39 +10:00
parent 19918b948d
commit 81b7079255
2 changed files with 6 additions and 6 deletions

View File

@ -7374,7 +7374,7 @@ basic_json_parser_64:
@return the floating point number
*/
long double str_to_float_t(long double* type, char** endptr) const
long double str_to_float_t(long double* /* type */, char** endptr) const
{
return std::strtold(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
}
@ -7393,7 +7393,7 @@ basic_json_parser_64:
@return the floating point number
*/
double str_to_float_t(double* type, char** endptr) const
double str_to_float_t(double* /* type */, char** endptr) const
{
return std::strtod(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
}
@ -7412,7 +7412,7 @@ basic_json_parser_64:
@return the floating point number
*/
float str_to_float_t(float* type, char** endptr) const
float str_to_float_t(float* /* type */, char** endptr) const
{
return std::strtof(reinterpret_cast<typename string_t::const_pointer>(m_start), endptr);
}