From e1da3b1841f993b3417201d94200bb50644bd5c8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 5 Sep 2021 13:44:32 +0200 Subject: [PATCH] Kernel: Make KResult pull in the TRY macro --- Kernel/API/KResult.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 + * Copyright (c) 2018-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ @@ -10,6 +10,7 @@ #include #include #include +#include #include namespace Kernel {