[clang-tidy] remove unneeded return

Found with readability-redundant-control-flow

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2020-02-02 14:22:10 -08:00
parent 140d8547c7
commit 7d2c4ec775
2 changed files with 0 additions and 2 deletions

View File

@@ -150,6 +150,5 @@ dsdlib_tag_id3(InputStream &is, TagHandler &handler,
scan_id3_tag(id3_tag, handler);
id3_tag_delete(id3_tag);
return;
}
#endif

View File

@@ -213,7 +213,6 @@ dsdiff_handle_native_tag(DecoderClient *client, InputStream &is,
return;
handler.OnTag(type, {label, length});
return;
}
/**