Fixes for 1.41

[SVN r56919]
This commit is contained in:
Ion Gaztañaga
2009-10-16 14:54:47 +00:00
parent 36f09b7698
commit c3b42d233c

View File

@@ -108,7 +108,7 @@ class smart_ptr
public: //Public Functions
//!Constructor from raw pointer (allows "0" pointer conversion). Never throws.
smart_ptr(pointer ptr = 0)
explicit smart_ptr(pointer ptr = 0)
: m_ptr(ptr)
{}