summaryrefslogtreecommitdiff
path: root/src/KM_platform.h
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2007-07-20 05:12:53 +0000
committerjhurst <>2007-07-20 05:12:53 +0000
commitdeaf5cf9df866a1632a310ae4e5e774ae7aeca68 (patch)
tree2f718c6d4ccac17ce10976beaf73569ab4cbe7f8 /src/KM_platform.h
parentfe443bd90d915478994953b56836577a96ea4a28 (diff)
templates like this->
Diffstat (limited to 'src/KM_platform.h')
-rw-r--r--src/KM_platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KM_platform.h b/src/KM_platform.h
index 0c577a1..111cbbf 100644
--- a/src/KM_platform.h
+++ b/src/KM_platform.h
@@ -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; }