Remove std::move on const members
Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
parent
5a7827e85e
commit
32254864d5
@ -104,7 +104,7 @@ eap::config_method::config_method(_In_ const config_method &other) :
|
|||||||
|
|
||||||
|
|
||||||
eap::config_method::config_method(_Inout_ config_method &&other) noexcept :
|
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_allow_save (std::move(other.m_allow_save )),
|
||||||
m_last_status(std::move(other.m_last_status)),
|
m_last_status(std::move(other.m_last_status)),
|
||||||
m_last_msg (std::move(other.m_last_msg )),
|
m_last_msg (std::move(other.m_last_msg )),
|
||||||
|
@ -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 :
|
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_id (std::move(other.m_id )),
|
||||||
m_send_nak (std::move(other.m_send_nak )),
|
m_send_nak (std::move(other.m_send_nak )),
|
||||||
method_tunnel(std::move(other ))
|
method_tunnel(std::move(other ))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user