Delete Instance constructor, since its member constructor is deleted

This commit is contained in:
Evgenii Zheltonozhskii 2018-10-19 19:59:40 +03:00 committed by Alex
parent e4478fd0fd
commit f526586bfb
1 changed files with 2 additions and 2 deletions

View File

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