From 1ac61ffe19382c13b1f5679e6abed5c4629f2fce Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 14 Nov 2022 19:05:43 -0800 Subject: [PATCH] clang-tidy: remove pointless return in void func Found with readability-redundant-control-flow Signed-off-by: Rosen Penev --- taglib/asf/asfpicture.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/taglib/asf/asfpicture.cpp b/taglib/asf/asfpicture.cpp index d8562585..526b2fd0 100644 --- a/taglib/asf/asfpicture.cpp +++ b/taglib/asf/asfpicture.cpp @@ -172,7 +172,6 @@ void ASF::Picture::parse(const ByteVector& bytes) d->picture = bytes.mid(pos, dataLen); d->valid = true; - return; } ASF::Picture ASF::Picture::fromInvalid()