Преглед на файлове

pipeline_helper: Add missing [[maybe_unused]]

ReinUsesLisp преди 5 години
родител
ревизия
e5e79648cf
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/video_core/renderer_vulkan/pipeline_helper.h

+ 1 - 1
src/video_core/renderer_vulkan/pipeline_helper.h

@@ -97,7 +97,7 @@ public:
         for ([[maybe_unused]] const auto& desc : info.texture_descriptors) {
             Add(VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, stage);
         }
-        for (const auto& desc : info.image_descriptors) {
+        for ([[maybe_unused]] const auto& desc : info.image_descriptors) {
             Add(VK_DESCRIPTOR_TYPE_STORAGE_IMAGE, stage);
         }
     }