Skip to content

Commit

Permalink
Closed beta 1.3.7.2: Fix build for Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Jun 23, 2018
1 parent 9c64cdb commit e708065
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Telegram/SourceFiles/rpl/variable.h
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit e708065

Please sign in to comment.