mirror of https://github.com/procxx/kepka.git
Closed beta 1.3.7.2: Fix build for Windows.
This commit is contained in:
parent
9c64cdb9c4
commit
e708065446
|
@ -66,7 +66,8 @@ class variable final {
|
|||
public:
|
||||
variable() : _data{} {
|
||||
}
|
||||
|
||||
variable(variable &&other) : _data(std::move(other._data)) {
|
||||
}
|
||||
variable &operator=(variable &&other) {
|
||||
return (*this = std::move(other._data));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue