mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2026-05-27 00:55:10 +00:00
fixed warning
This commit is contained in:
+1
-1
@@ -39,7 +39,7 @@ namespace data
|
||||
/**
|
||||
* Compute the size for a buffer to contain encoded base64 given that the size of the input is input_size bytes
|
||||
*/
|
||||
constexpr size_t Base64EncodingBufferSize(size_t input_size)
|
||||
inline size_t Base64EncodingBufferSize(size_t input_size)
|
||||
{
|
||||
auto d = std::div (input_size, 3);
|
||||
if (d.rem) d.quot++;
|
||||
|
||||
Reference in New Issue
Block a user