Fix compilation of FFMpeg plugin/emscripten/ShaderNode

This commit is contained in:
SirLynix
2023-08-24 17:58:49 +02:00
parent 1c54c9a914
commit d4b2cede15
5 changed files with 5 additions and 5 deletions

View File

@@ -140,7 +140,7 @@ namespace Nz::GL
return true;
}
bool WebContext::ImplementFallback(const std::string_view& function)
bool WebContext::ImplementFallback(std::string_view function)
{
if (Context::ImplementFallback(function))
return true;

View File

@@ -113,7 +113,7 @@ namespace Nz::GL
}
}
bool WebLoader::ImplementFallback(const std::string_view& /*function*/)
bool WebLoader::ImplementFallback(std::string_view /*function*/)
{
return false;
}