small fixups i think

This commit is contained in:
Mars 2025-05-08 14:58:46 -04:00
parent 3d4878f930
commit d5f3c2351f
Signed by: pupbrained
GPG key ID: 0FF5B8826803F895
3 changed files with 89 additions and 21 deletions

View file

@ -21,6 +21,12 @@ using util::types::u64, util::types::f64, util::types::String, util::types::Opti
*/
struct BytesToGiB {
u64 value; ///< The byte value to be converted.
/**
* @brief Constructor for BytesToGiB.
* @param value The byte value to be converted.
*/
explicit constexpr BytesToGiB(u64 value) : value(value) {}
};
/// @brief Conversion factor from bytes to GiB