1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

♻️ make function static

This commit is contained in:
Niels Lohmann
2022-01-05 21:21:46 +01:00
parent 4b6220acf2
commit 6d8d043add
2 changed files with 2 additions and 2 deletions

View File

@ -16707,7 +16707,7 @@ class serializer
* @param[in] byte byte to represent
* @return representation ("00".."FF")
*/
inline std::string hex_bytes(std::uint8_t byte)
static std::string hex_bytes(std::uint8_t byte)
{
std::string result = "FF";
constexpr const char* nibble_to_hex = "0123456789ABCDEF";