diff options
author | Max Kellermann <max@musicpd.org> | 2020-02-01 13:47:16 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-02-01 13:47:16 +0100 |
commit | 4c52001a350ca573fd19f910f2f808d5f31cf95b (patch) | |
tree | 30c3e60b3dfefb0774ad354877319356445d0a21 /src/input/InputStream.cxx | |
parent | faa04966affb4a29780f4ede882d33b663e0a91b (diff) |
*: use defaulted destructors
Diffstat (limited to 'src/input/InputStream.cxx')
-rw-r--r-- | src/input/InputStream.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/input/InputStream.cxx b/src/input/InputStream.cxx index 684dfb95b..3e184d901 100644 --- a/src/input/InputStream.cxx +++ b/src/input/InputStream.cxx @@ -26,9 +26,7 @@ #include <assert.h> -InputStream::~InputStream() noexcept -{ -} +InputStream::~InputStream() noexcept = default; void InputStream::Check() |