input/Plugin: pass URI as std::string_view

This commit is contained in:
Max Kellermann
2025-01-30 11:20:52 +01:00
parent aee49d1c1c
commit 715ef846b6
35 changed files with 85 additions and 92 deletions

View File

@@ -90,7 +90,7 @@ public:
class MyChromaprintDecoderClient final : public ChromaprintDecoderClient {
public:
InputStreamPtr OpenUri(const char *) override {
InputStreamPtr OpenUri(std::string_view) override {
throw std::runtime_error("Not implemented");
}
};