Update copyright dates.
[asdcplib.git] / src / KM_platform.h
index 0c577a1c0e2de8b388ee0c53c607e9ddea82445d..21ffd22fac75a0b27e05a9962eb673713201812f 100644 (file)
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2004-2006, John Hurst
+Copyright (c) 2004-2009, John Hurst
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
@@ -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; }