mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 20:21:26 +00:00
- fixed compilation with MSVC 14.28.29333 from VS2019 16.8.0
include\algorithm(7419,17): error C3892: '_First': you cannot assign to a variable that is const (compiling source file src\rendering\hwrenderer\scene\hw_drawlist.cpp)
This commit is contained in:
parent
6e3a4c590d
commit
013078a02f
1 changed files with 1 additions and 2 deletions
|
@ -98,8 +98,7 @@ public:
|
|||
T& operator[](difference_type i) { return m_ptr[i]; }
|
||||
const T& operator[](difference_type i) const { return m_ptr[i]; }
|
||||
|
||||
T &operator*() { return *m_ptr; }
|
||||
const T &operator*() const { return *m_ptr; }
|
||||
T &operator*() const { return *m_ptr; }
|
||||
T* operator->() { return m_ptr; }
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Reference in a new issue