mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
Remove const from class variables
It prohibits copy construction, copy assignment and move semantics.
This commit is contained in:
@@ -57,8 +57,8 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
const IndexType m_first;
|
||||
const IndexType m_last;
|
||||
IndexType m_first;
|
||||
IndexType m_last;
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
|
||||
Reference in New Issue
Block a user