From f526586bfbcea22f8bff0fa67cb46124fa338907 Mon Sep 17 00:00:00 2001 From: Evgenii Zheltonozhskii Date: Fri, 19 Oct 2018 19:59:40 +0300 Subject: [PATCH] Delete Instance constructor, since its member constructor is deleted --- Telegram/SourceFiles/lang/lang_instance.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/lang/lang_instance.h b/Telegram/SourceFiles/lang/lang_instance.h index 343516827..8efcb98a8 100644 --- a/Telegram/SourceFiles/lang/lang_instance.h +++ b/Telegram/SourceFiles/lang/lang_instance.h @@ -56,8 +56,8 @@ public: Instance(const Instance &other) = delete; Instance &operator=(const Instance &other) = delete; - Instance(Instance &&other) = default; - Instance &operator=(Instance &&other) = default; + Instance(Instance &&other) = delete; + Instance &operator=(Instance &&other) = delete; QString systemLangCode() const; QString cloudLangCode() const;