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)) { }