diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-28 09:33:00 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-28 09:37:09 +0200 |
commit | a1944ec966a6ecba82e8e0c3ad1e19d1fade595c (patch) | |
tree | 28d26f81b330155323f2e724d5b7dbcbd7818228 /Kernel/KResult.h | |
parent | 856f20f91f0558efb08a376a842c48ca183bb5be (diff) | |
download | serenity-a1944ec966a6ecba82e8e0c3ad1e19d1fade595c.zip |
Kernel: Add missing AK/Format.h include in KResult.h
Diffstat (limited to 'Kernel/KResult.h')
-rw-r--r-- | Kernel/KResult.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/KResult.h b/Kernel/KResult.h index 2e2143fe0d..05cc34b61b 100644 --- a/Kernel/KResult.h +++ b/Kernel/KResult.h @@ -7,6 +7,7 @@ #pragma once #include <AK/Assertions.h> +#include <AK/Format.h> #include <AK/Platform.h> #include <AK/StdLibExtras.h> #include <LibC/errno_numbers.h> |