mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:27:35 +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 <AK/Variant.h>
|
||||||
#include <LibCore/DateTime.h>
|
#include <LibCore/DateTime.h>
|
||||||
#include <LibCore/Object.h>
|
#include <LibCore/Object.h>
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
namespace IMAP {
|
namespace IMAP {
|
||||||
enum class CommandType {
|
enum class CommandType {
|
||||||
|
@ -474,7 +473,7 @@ public:
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
explicit SearchKey(T&& 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