Merge pull request #978 from kiwix/fix_missing_includes

This commit is contained in:
Matthieu Gautier 2023-07-25 16:32:26 +02:00 committed by GitHub
commit 903dcd46d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -23,6 +23,7 @@
#include <string>
#include <vector>
#include <map>
#include <cstdint>
namespace kiwix {
@ -217,9 +218,9 @@ std::map<std::string, std::string> getNetworkInterfaces();
std::string getBestPublicIp();
/** Converts file size to human readable format.
*
*
* This function will convert a number to its equivalent size using units.
*
*
* @param number file size in bytes.
* @return a human-readable string representation of the size, e.g., "2.3 KB", "1.8 MB", "5.2 GB".
*/