small things

This commit is contained in:
Mars 2024-08-01 05:31:50 +00:00
parent 3f4b24c259
commit b189049ab4
2 changed files with 3 additions and 1 deletions

View file

@ -9,6 +9,7 @@ Checks: >
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-owning-memory,
-cppcoreguidelines-pro-type-member-init,
-cppcoreguidelines-pro-type-vararg,
-fuchsia-*,
-google-*,
-hicpp-*,

View file

@ -11,6 +11,7 @@ struct BytesToGiB {
u64 value;
};
// 1024^3 (size of 1 GiB)
constexpr u64 GIB = 1'073'741'824;
template <>
@ -54,7 +55,7 @@ fn main() -> i32 {
const Config& config = Config::getInstance();
// Fetching weather information
auto weather = config.weather.get();
Weather weather = config.weather.get();
WeatherOutput weatherInfo = weather.getWeatherInfo();
// Fetching OS version