From 2a00a46865f8b6226b9444beb77b9667027de6e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Wed, 16 Oct 2013 11:49:32 +0000 Subject: [PATCH] added missing constructor; refs #7 --- src/mrw/checkcxx11.hxx | 1 + 1 file changed, 1 insertion(+) 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) {} }; };