Ref T120, removed virtual dtor for

* CDictionary
* CAircraftCfgEntriesList
This commit is contained in:
Klaus Basan
2017-08-02 16:52:07 +02:00
committed by Mathew Sutcliffe
parent 2b0241a8a7
commit 4a9ab8c3d7
2 changed files with 0 additions and 6 deletions

View File

@@ -297,9 +297,6 @@ namespace BlackMisc
//! Move constructor
CDictionary(CDictionary &&other) noexcept : m_impl(std::move(other.m_impl)) {}
//! Virtual destructor
virtual ~CDictionary() {}
//! Returns iterator at the beginning of the dictionary
iterator begin() { return m_impl.begin(); }

View File

@@ -43,9 +43,6 @@ namespace BlackMisc
//! Constructor
CAircraftCfgEntriesList() {}
//! Virtual destructor
virtual ~CAircraftCfgEntriesList() {}
//! Contains model with title?
bool containsModelWithTitle(const QString &title, Qt::CaseSensitivity caseSensitivity = Qt::CaseInsensitive);