mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 13:59:58 +00:00
Merge pull request #4872 from jbeich/clang
video_core: unbreak -Werror in NVDEC with Clang
This commit is contained in:
commit
6db0c0d8d9
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ std::size_t WriteVectors(std::vector<u8>& dst, const std::vector<T>& src, std::s
|
||||||
|
|
||||||
namespace NvErrCodes {
|
namespace NvErrCodes {
|
||||||
constexpr u32 Success{};
|
constexpr u32 Success{};
|
||||||
constexpr u32 OutOfMemory{static_cast<u32>(-12)};
|
[[maybe_unused]] constexpr u32 OutOfMemory{static_cast<u32>(-12)};
|
||||||
constexpr u32 InvalidInput{static_cast<u32>(-22)};
|
constexpr u32 InvalidInput{static_cast<u32>(-22)};
|
||||||
} // namespace NvErrCodes
|
} // namespace NvErrCodes
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue