Browse Source
Merge pull request #4872 from jbeich/clang
video_core: unbreak -Werror in NVDEC with Clang
pull/15/merge
LC
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp
|
|
|
@ -38,7 +38,7 @@ std::size_t WriteVectors(std::vector<u8>& dst, const std::vector<T>& src, std::s |
|
|
|
|
|
|
|
namespace NvErrCodes { |
|
|
|
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)}; |
|
|
|
} // namespace NvErrCodes
|
|
|
|
|
|
|
|
|