forked from organicmaps/organicmaps
Add default constructor to ReaderPtr.
This commit is contained in:
parent
a3224e1110
commit
1070cdcf16
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ protected:
|
|||
shared_ptr<ReaderT> m_p;
|
||||
|
||||
public:
|
||||
ReaderPtr(ReaderT * p) : m_p(p) {}
|
||||
ReaderPtr(ReaderT * p = 0) : m_p(p) {}
|
||||
|
||||
uint64_t Size() const
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue