Skip to content
Snippets Groups Projects
Unverified Commit 6db0c0d8 authored by LC's avatar LC Committed by GitHub
Browse files

Merge pull request #4872 from jbeich/clang

video_core: unbreak -Werror in NVDEC with Clang
parents 14a97d08 50e52ade
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ std::size_t WriteVectors(std::vector<u8>& dst, const std::vector<T>& src, std::s ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment