diff options
| author | jhurst <jhurst@cinecert.com> | 2007-07-20 05:12:53 +0000 |
|---|---|---|
| committer | jhurst <> | 2007-07-20 05:12:53 +0000 |
| commit | deaf5cf9df866a1632a310ae4e5e774ae7aeca68 (patch) | |
| tree | 2f718c6d4ccac17ce10976beaf73569ab4cbe7f8 /src/KM_platform.h | |
| parent | fe443bd90d915478994953b56836577a96ea4a28 (diff) | |
templates like this->
Diffstat (limited to 'src/KM_platform.h')
| -rw-r--r-- | src/KM_platform.h | 2 |
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; } |
