clang-format src

This commit is contained in:
Lars Toenning
2023-04-13 14:20:16 +02:00
parent ba41d4887b
commit 970b7c3650
1501 changed files with 20326 additions and 17820 deletions

View File

@@ -51,10 +51,18 @@ namespace BlackMisc
CVariantMap(CVariantMap &&other) noexcept : CDictionary(std::move(other)) {}
//! Copy assignment operator.
CVariantMap &operator =(const CVariantMap &other) { CDictionary::operator =(other); return *this; }
CVariantMap &operator=(const CVariantMap &other)
{
CDictionary::operator=(other);
return *this;
}
//! Move assignment operator.
CVariantMap &operator =(CVariantMap &&other) noexcept { CDictionary::operator =(std::move(other)); return *this; }
CVariantMap &operator=(CVariantMap &&other) noexcept
{
CDictionary::operator=(std::move(other));
return *this;
}
//! Destructor.
~CVariantMap() = default;