1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-31 10:24:23 +03:00

🚨 fix warnings

This commit is contained in:
Niels Lohmann
2020-07-21 23:00:56 +02:00
parent 8344857764
commit 8b14c9b305
4 changed files with 8 additions and 8 deletions

View File

@ -2279,7 +2279,7 @@ class binary_reader
success = false;
break;
}
result.push_back(std::char_traits<char_type>::to_char_type(current));
result.push_back(static_cast<typename string_t::value_type>(current));
};
return success;
}