From ee562a8ed70a87b5d6e7216239e080f893757c51 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 1 Sep 2021 14:09:50 +0200 Subject: [PATCH] LibIMAP: Remove accidental use of STL --- Userland/Libraries/LibIMAP/Objects.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Userland/Libraries/LibIMAP/Objects.h b/Userland/Libraries/LibIMAP/Objects.h index 7444591313..3b998b9472 100644 --- a/Userland/Libraries/LibIMAP/Objects.h +++ b/Userland/Libraries/LibIMAP/Objects.h @@ -12,7 +12,6 @@ #include #include #include -#include namespace IMAP { enum class CommandType { @@ -474,7 +473,7 @@ public: template explicit SearchKey(T&& t) - : data(std::forward(t)) + : data(forward(t)) { }