mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 02:01:40 -05:00
Closed beta 1.3.7.2: Fix build for Windows.
This commit is contained in:
parent
9c64cdb9c4
commit
e708065446
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue