diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-29 09:38:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-29 09:38:03 +0000 |
commit | 5c1a2b328f0f75669de0f7660e8425199ba89d6b (patch) | |
tree | b2dd79e36856a898a917a3cde251f6afe3b945fd /include/m_system_cpp.h | |
parent | eeac55c3eea2af3b4af704378d7feb20edab950d (diff) |
- eliminated crash in Punto Switcher's dll during exit;
- removed references to the callee's local thread data in QueueUserAPC;
git-svn-id: http://svn.miranda-ng.org/main/trunk@683 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_system_cpp.h')
-rw-r--r-- | include/m_system_cpp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/m_system_cpp.h b/include/m_system_cpp.h index 5815e410a4..76556160a6 100644 --- a/include/m_system_cpp.h +++ b/include/m_system_cpp.h @@ -42,9 +42,11 @@ template<class T> class mir_ptr T* data;
public:
+ __inline mir_ptr() : data((T*)mir_calloc(sizeof(T))) {}
__inline mir_ptr(T* _p) : data(_p) {}
__inline ~mir_ptr() { mir_free(data); }
__inline T* operator= (T* _p) { if (data) mir_free(data); data = _p; return data; }
+ __inline T* operator->() const { return data; }
__inline operator T*() const { return data; }
__inline operator INT_PTR() const { return (INT_PTR)data; }
};
|