Просмотр исходного кода

video_core: unbreak -Werror in NVDEC with Clang

src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp:41:15: error: unused variable 'OutOfMemory' [-Werror,-Wunused-const-variable]
constexpr u32 OutOfMemory{static_cast<u32>(-12)};
              ^
Jan Beich 5 лет назад
Родитель
Сommit
50e52ade85
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp

+ 1 - 1
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