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

@@ -113,8 +113,8 @@ public:
RedirectStdOutput();
protected:
int overflow(int c = EOF);
int sync();
int overflow(int c = EOF) override;
int sync() override;
private:
std::string buffer;
@@ -126,8 +126,8 @@ public:
RedirectStdError();
protected:
int overflow(int c = EOF);
int sync();
int overflow(int c = EOF) override;
int sync() override;
private:
std::string buffer;
@@ -139,8 +139,8 @@ public:
RedirectStdLog();
protected:
int overflow(int c = EOF);
int sync();
int overflow(int c = EOF) override;
int sync() override;
private:
std::string buffer;