diff options
-rw-r--r-- | include/m_system_cpp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_system_cpp.h b/include/m_system_cpp.h index fb9edeb582..243a523d67 100644 --- a/include/m_system_cpp.h +++ b/include/m_system_cpp.h @@ -44,8 +44,8 @@ template<class T> class mir_ptr T* data;
public:
- __inline mir_ptr() : data(NULL) {}
- __inline mir_ptr(T* _p) : data(_p) {}
+ __inline explicit mir_ptr() : data(NULL) {}
+ __inline explicit 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; }
|