diff --git a/src/mrw/checkcxx11.hxx b/src/mrw/checkcxx11.hxx index 99b030f..823aa08 100644 --- a/src/mrw/checkcxx11.hxx +++ b/src/mrw/checkcxx11.hxx @@ -41,6 +41,7 @@ namespace std { // one from the boost library as a 1:1 replacement template class shared_ptr: public boost::shared_ptr { public: + explicit shared_ptr(): boost::shared_ptr() {} explicit shared_ptr(T* p): boost::shared_ptr(p) {} }; };