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
commit 6d167e9a28
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
3 changed files with 5 additions and 5 deletions

View file

@ -57,8 +57,8 @@ public:
}
private:
const IndexType m_first;
const IndexType m_last;
IndexType m_first;
IndexType m_last;
};
template <typename T>