From 15fa4f1c55520e929c2eb41d61e16dd818910192 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 18 Jun 2019 09:31:14 +0200 Subject: [PATCH] AK: ScopeGuard.h needs StdLibExtras.h --- AK/ScopeGuard.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AK/ScopeGuard.h b/AK/ScopeGuard.h index 44556e0ee6..9946796663 100644 --- a/AK/ScopeGuard.h +++ b/AK/ScopeGuard.h @@ -1,5 +1,7 @@ #pragma once +#include + namespace AK { template