From 64e0ea59d1429ae04bdde4e6900bfb4fb93839be Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Thu, 12 Nov 2020 12:06:03 +0200 Subject: [PATCH] - 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) --- src/tarray.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tarray.h b/src/tarray.h index eecb60576..343cf28dc 100644 --- a/src/tarray.h +++ b/src/tarray.h @@ -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: