Update build.
[asdcplib.git] / src / KM_platform.h
index 0c577a1c0e2de8b388ee0c53c607e9ddea82445d..111cbbf0fd7ed541cbcf6a882dceec4e1d07d450 100644 (file)
@@ -166,7 +166,7 @@ namespace Kumu
       inline T&   operator*()  const { return *m_p; }
       inline T*   operator->() const { return m_p; }
       inline      operator T*()const { return m_p; }
-      inline const mem_ptr<T>& operator=(T* p) { set(p); return *this; }
+      inline const mem_ptr<T>& operator=(T* p) { this->set(p); return *this; }
       inline T*   set(T* p)          { delete m_p; m_p = p; return m_p; }
       inline T*   get()        const { return m_p; }
       inline void release()          { m_p = 0; }