Fixed clazy warnings: rule of zero/three/five.

This commit is contained in:
Mat Sutcliffe
2018-12-17 16:47:38 +00:00
parent 20d4575c55
commit 684ffeb671
3 changed files with 12 additions and 0 deletions

View File

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