decoder/Plugin: add "noexcept"
This commit is contained in:
@@ -579,7 +579,7 @@ wavpack_filedecode(DecoderClient &client, Path path_fs)
|
||||
*/
|
||||
static bool
|
||||
wavpack_scan_file(Path path_fs,
|
||||
const TagHandler &handler, void *handler_ctx)
|
||||
const TagHandler &handler, void *handler_ctx) noexcept
|
||||
{
|
||||
auto *wpc = WavpackOpenInput(path_fs, OPEN_DSD_FLAG, 0);
|
||||
AtScopeExit(wpc) {
|
||||
@@ -595,7 +595,7 @@ wavpack_scan_file(Path path_fs,
|
||||
|
||||
static bool
|
||||
wavpack_scan_stream(InputStream &is,
|
||||
const TagHandler &handler, void *handler_ctx)
|
||||
const TagHandler &handler, void *handler_ctx) noexcept
|
||||
{
|
||||
WavpackInput isp(nullptr, is);
|
||||
auto *wpc = WavpackOpenInput(&mpd_is_reader, &isp, nullptr,
|
||||
|
Reference in New Issue
Block a user