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

@@ -53,9 +53,7 @@ Writer::Writer()
indBuf[0] = '\0';
}
Writer::~Writer()
{
}
Writer::~Writer() = default;
void Writer::insertAsciiFile(const char* FileName)
{
@@ -286,9 +284,7 @@ FileWriter::FileWriter(const char* DirName) : DirName(DirName)
{
}
FileWriter::~FileWriter()
{
}
FileWriter::~FileWriter() = default;
void FileWriter::putNextEntry(const char* file)
{