Update msvcstl.hpp

This commit is contained in:
alk 2022-11-22 16:49:53 +03:00 committed by GitHub
parent af35eb7228
commit 322dc1b048
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ namespace gd {
template <class Param>
string& operator=(Params&& param) {
std::string val;
val = std::forward<Params>(param);
val = std::forward<Param>(param);
(void)this->winAssign(val.c_str(), val.size());
return *this;
}