From 7f613c79cd0adff0df54e442d6f8b9bc435c6377 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 27 Jun 2019 16:01:24 +0200 Subject: [PATCH] AK: Oops, fix typo in RemoveVolatile helper. --- AK/StdLibExtras.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/StdLibExtras.h b/AK/StdLibExtras.h index a1cf752157..05c442284f 100644 --- a/AK/StdLibExtras.h +++ b/AK/StdLibExtras.h @@ -130,7 +130,7 @@ struct RemoveVolatile { typedef T Type; }; template -struct RemoveVolatile { +struct RemoveVolatile { typedef T Type; }; template