mirror of
https://github.com/nlohmann/json.git
synced 2025-08-06 07:02:42 +03:00
Use binary_t::value_type (#4805)
This commit is contained in:
@@ -12765,7 +12765,7 @@ class binary_reader
|
||||
success = false;
|
||||
break;
|
||||
}
|
||||
result.push_back(static_cast<std::uint8_t>(current));
|
||||
result.push_back(static_cast<typename binary_t::value_type>(current));
|
||||
}
|
||||
return success;
|
||||
}
|
||||
|
Reference in New Issue
Block a user