This commit is contained in:
Matthias Hochsteger 2018-12-10 10:59:46 +01:00
parent 3679ea7e45
commit 6a2361700f

View File

@ -107,8 +107,10 @@ namespace ngcore
static void SetArchiveRegister(const std::string& classname, const ClassArchiveInfo& info);
static bool IsRegistered(const std::string& classname);
public:
Archive (bool ais_output) : is_output(ais_output), shared_ptr_count(0), ptr_count(0)
shared_ptr2nr(), ptr2nr(), nr2shared_ptr(), nr2prt() { ; }
Archive (bool ais_output) :
is_output(ais_output), shared_ptr_count(0), ptr_count(0),
shared_ptr2nr(), ptr2nr(), nr2shared_ptr(), nr2ptr() { ; }
virtual ~Archive() { ; }
bool Output () { return is_output; }