diff --git a/daemon/Daemon.cpp b/daemon/Daemon.cpp index 54146d5d..d077644d 100644 --- a/daemon/Daemon.cpp +++ b/daemon/Daemon.cpp @@ -119,12 +119,6 @@ namespace i2p } LogPrint(eLogInfo, "i2pd v", VERSION, " starting"); -#ifdef AESNI - LogPrint(eLogInfo, "AESNI enabled"); -#endif -#if defined(__AVX__) - LogPrint(eLogInfo, "AVX enabled"); -#endif LogPrint(eLogDebug, "FS: main config file: ", config); LogPrint(eLogDebug, "FS: data directory: ", datadir); diff --git a/libi2pd/Queue.h b/libi2pd/Queue.h index d701e4b8..0438cc37 100644 --- a/libi2pd/Queue.h +++ b/libi2pd/Queue.h @@ -32,7 +32,7 @@ namespace util { std::unique_lock l(m_QueueMutex); for (const auto& it: vec) - m_Queue.push (it); + m_Queue.push (std::move(it)); m_NonEmpty.notify_one (); } }