diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-05 13:44:32 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-05 14:08:12 +0200 |
commit | e1da3b1841f993b3417201d94200bb50644bd5c8 (patch) | |
tree | a1d4f244fe249aad16e1fe3312db02dd838c38c6 /Kernel | |
parent | b4d8e166d854679941396f59e5b43ce4a21e697a (diff) | |
download | serenity-e1da3b1841f993b3417201d94200bb50644bd5c8.zip |
Kernel: Make KResult pull in the TRY macro
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/API/KResult.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/API/KResult.h b/Kernel/API/KResult.h index 67521f7575..76e7cb87a0 100644 --- a/Kernel/API/KResult.h +++ b/Kernel/API/KResult.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> + * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ @@ -10,6 +10,7 @@ #include <AK/Format.h> #include <AK/Platform.h> #include <AK/StdLibExtras.h> +#include <AK/Try.h> #include <LibC/errno_numbers.h> namespace Kernel { |