Delete Instance constructor, since its member constructor is deleted

This commit is contained in:
Evgenii Zheltonozhskii 2018-10-19 19:59:40 +03:00
parent 9cf55590c0
commit aee7d971c4
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;