diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-08-18 13:34:48 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-08-18 13:34:48 +0200 |
| commit | 5754a8591252da5d5eeb4281064f0b82bfdc03a8 (patch) | |
| tree | 163fb25c7bda6a90a3d71abfdd4d34cf1fd16e04 /kernel | |
| parent | f3fc901290c65ec8a4c025c30a316cb2ac5dd53d (diff) | |
| download | kernel-5754a8591252da5d5eeb4281064f0b82bfdc03a8.tar.xz kernel-5754a8591252da5d5eeb4281064f0b82bfdc03a8.zip | |
kernel: fix test build issues
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/kernel/test_support/kapi/memory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/kernel/test_support/kapi/memory.cpp b/kernel/kernel/test_support/kapi/memory.cpp index 33b725bd..01fc078a 100644 --- a/kernel/kernel/test_support/kapi/memory.cpp +++ b/kernel/kernel/test_support/kapi/memory.cpp @@ -12,8 +12,8 @@ namespace { //! The size of the simulated RAM. - constexpr auto physical_size = kstd::units::MiB(32); - constexpr auto virtual_size = kstd::units::GiB(1); + constexpr auto physical_size = kstd::units::MiB(32u); + constexpr auto virtual_size = kstd::units::GiB(1u); constexpr auto number_of_frames = physical_size / kapi::memory::frame::size; |
