From 004e50d84773242a000f5cadb89466bbc793e1a8 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Fri, 15 Jun 2018 19:02:56 +0200 Subject: =?UTF-8?q?Run=20clang-tidy=E2=80=99s=20modernize-use-equals-defau?= =?UTF-8?q?lt=20pass.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This replaces empty constructors and destructors with the default keyword. --- src/io/bufferstream.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/io/bufferstream.cpp') diff --git a/src/io/bufferstream.cpp b/src/io/bufferstream.cpp index ba440254f..9a79f4e1b 100644 --- a/src/io/bufferstream.cpp +++ b/src/io/bufferstream.cpp @@ -56,9 +56,7 @@ BufferInputStream::BufferInputStream( * */ BufferInputStream::~BufferInputStream() -{ - -} += default; /** * Returns the number of bytes that can be read (or skipped over) from @@ -114,8 +112,7 @@ BufferOutputStream::BufferOutputStream() * */ BufferOutputStream::~BufferOutputStream() -{ -} += default; /** * Closes this output stream and releases any system resources -- cgit v1.2.3