From e708065446398620c45542dded8289d839be9a78 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sat, 23 Jun 2018 01:02:20 +0100 Subject: [PATCH] Closed beta 1.3.7.2: Fix build for Windows. --- Telegram/SourceFiles/rpl/variable.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/rpl/variable.h b/Telegram/SourceFiles/rpl/variable.h index 96bb79da3..f5d46c799 100644 --- a/Telegram/SourceFiles/rpl/variable.h +++ b/Telegram/SourceFiles/rpl/variable.h @@ -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)); }