Fix some additional warnings
This commit is contained in:
parent
082015a0c5
commit
85b7e06ae8
|
|
@ -22,7 +22,7 @@ namespace Nz
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PropertyHandler() = default;
|
PropertyHandler() = default;
|
||||||
PropertyHandler(const PropertyHandler&) = delete;
|
PropertyHandler(const PropertyHandler&) = default;
|
||||||
PropertyHandler(PropertyHandler&&) = delete;
|
PropertyHandler(PropertyHandler&&) = delete;
|
||||||
virtual ~PropertyHandler();
|
virtual ~PropertyHandler();
|
||||||
|
|
||||||
|
|
@ -33,7 +33,7 @@ namespace Nz
|
||||||
|
|
||||||
virtual void Update(MaterialInstance& materialInstance) const = 0;
|
virtual void Update(MaterialInstance& materialInstance) const = 0;
|
||||||
|
|
||||||
PropertyHandler& operator=(const PropertyHandler&) = delete;
|
PropertyHandler& operator=(const PropertyHandler&) = default;
|
||||||
PropertyHandler& operator=(PropertyHandler&&) = delete;
|
PropertyHandler& operator=(PropertyHandler&&) = delete;
|
||||||
|
|
||||||
struct SamplerData
|
struct SamplerData
|
||||||
|
|
|
||||||
|
|
@ -467,7 +467,7 @@ namespace
|
||||||
m_ffmpegLoaderEntry = nullptr;
|
m_ffmpegLoaderEntry = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string_view GetDescription() const
|
std::string_view GetDescription() const override
|
||||||
{
|
{
|
||||||
return "Adds supports to load and decode videos streams";
|
return "Adds supports to load and decode videos streams";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue