Remove const from class variables

It prohibits copy construction, copy assignment and move semantics.
This commit is contained in:
Chocobo1
2020-04-29 21:15:08 +08:00
parent 21581141f6
commit 6d167e9a28
3 changed files with 5 additions and 5 deletions

View File

@@ -39,8 +39,8 @@ public:
QString statusText() const;
private:
const int m_statusCode;
const QString m_statusText;
int m_statusCode;
QString m_statusText;
};
class BadRequestHTTPError : public HTTPError