1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:08:10 +00:00

LibIMAP: Remove accidental use of STL

This commit is contained in:
Andreas Kling 2021-09-01 14:09:50 +02:00
parent 848c4fc43d
commit ee562a8ed7

View file

@ -12,7 +12,6 @@
#include <AK/Variant.h>
#include <LibCore/DateTime.h>
#include <LibCore/Object.h>
#include <utility>
namespace IMAP {
enum class CommandType {
@ -474,7 +473,7 @@ public:
template<typename T>
explicit SearchKey(T&& t)
: data(std::forward<T>(t))
: data(forward<T>(t))
{
}