diff --git a/lib/EAPBase/src/Config.cpp b/lib/EAPBase/src/Config.cpp index bbc73de..47ef5d4 100644 --- a/lib/EAPBase/src/Config.cpp +++ b/lib/EAPBase/src/Config.cpp @@ -104,7 +104,7 @@ eap::config_method::config_method(_In_ const config_method &other) : eap::config_method::config_method(_Inout_ config_method &&other) noexcept : - m_level (std::move(other.m_level )), + m_level ( other.m_level ), m_allow_save (std::move(other.m_allow_save )), m_last_status(std::move(other.m_last_status)), m_last_msg (std::move(other.m_last_msg )), diff --git a/lib/EAPBase/src/Method.cpp b/lib/EAPBase/src/Method.cpp index d86a2bc..4969d47 100644 --- a/lib/EAPBase/src/Method.cpp +++ b/lib/EAPBase/src/Method.cpp @@ -241,7 +241,7 @@ eap::method_eap::method_eap(_In_ module &mod, _In_ winstd::eap_type_t eap_method eap::method_eap::method_eap(_Inout_ method_eap &&other) noexcept : - m_eap_method (std::move(other.m_eap_method)), + m_eap_method ( other.m_eap_method ), m_id (std::move(other.m_id )), m_send_nak (std::move(other.m_send_nak )), method_tunnel(std::move(other ))