Closed beta 1.3.7.2: Fix build for Windows.

This commit is contained in:
John Preston 2018-06-23 01:02:20 +01:00
parent 9c64cdb9c4
commit e708065446

View file

@ -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));
}