[clang-tidy] remove unneeded return

Found with readability-redundant-control-flow Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
parent 140d8547
...@@ -150,6 +150,5 @@ dsdlib_tag_id3(InputStream &is, TagHandler &handler, ...@@ -150,6 +150,5 @@ dsdlib_tag_id3(InputStream &is, TagHandler &handler,
scan_id3_tag(id3_tag, handler); scan_id3_tag(id3_tag, handler);
id3_tag_delete(id3_tag); id3_tag_delete(id3_tag);
return;
} }
#endif #endif
...@@ -213,7 +213,6 @@ dsdiff_handle_native_tag(DecoderClient *client, InputStream &is, ...@@ -213,7 +213,6 @@ dsdiff_handle_native_tag(DecoderClient *client, InputStream &is,
return; return;
handler.OnTag(type, {label, length}); handler.OnTag(type, {label, length});
return;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment