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:
parent
848c4fc43d
commit
ee562a8ed7
1 changed files with 1 additions and 2 deletions
|
@ -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))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue