Base: Modernise ctors dtors defs etc

This commit is contained in:
berniev
2022-08-01 13:56:03 +10:00
committed by wwmayer
parent ea233be212
commit 15419982d4
60 changed files with 271 additions and 363 deletions

View File

@@ -42,18 +42,13 @@ Type BaseClass::classTypeId = Base::Type::badType();
* A constructor.
* A more elaborate description of the constructor.
*/
BaseClass::BaseClass()
{
}
BaseClass::BaseClass() = default;
/**
* A destructor.
* A more elaborate description of the destructor.
*/
BaseClass::~BaseClass()
{
}
BaseClass::~BaseClass() = default;
//**************************************************************************