* Refactor readable size function * Log set memory limit * Add memory allocation info to storage * Updated changelog
7 lines
114 B
C++
7 lines
114 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace utils {
|
|
std::string GetReadableSize(double size);
|
|
} // namespace utils
|