From 6a2361700fd0499b26b8b0c0c1285e44ee7e77b2 Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Mon, 10 Dec 2018 10:59:46 +0100 Subject: [PATCH] Fix typo --- libsrc/core/archive.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libsrc/core/archive.hpp b/libsrc/core/archive.hpp index 66589d90..25e3482c 100644 --- a/libsrc/core/archive.hpp +++ b/libsrc/core/archive.hpp @@ -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; }