From 04db5a95657a8c1ad1db36570eadaeedbea01cbb Mon Sep 17 00:00:00 2001 From: Jay Kwak <82421531+jkwak-work@users.noreply.github.com> Date: Thu, 17 Apr 2025 02:34:39 -0700 Subject: Fix compiler warning with clang 18.1.8 on windows (#6843) * Fix compiler warning with clang 18.1.8 on windows --- tools/gfx/vulkan/vk-shader-object.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/gfx/vulkan') diff --git a/tools/gfx/vulkan/vk-shader-object.h b/tools/gfx/vulkan/vk-shader-object.h index fafeb67f1..3dc1d79d4 100644 --- a/tools/gfx/vulkan/vk-shader-object.h +++ b/tools/gfx/vulkan/vk-shader-object.h @@ -250,8 +250,8 @@ public: List> const& getEntryPoints() const; - virtual GfxCount SLANG_MCALL getEntryPointCount() override; - virtual Result SLANG_MCALL + virtual SLANG_NO_THROW GfxCount SLANG_MCALL getEntryPointCount() override; + virtual SLANG_NO_THROW Result SLANG_MCALL getEntryPoint(GfxIndex index, IShaderObject** outEntryPoint) override; virtual SLANG_NO_THROW Result SLANG_MCALL -- cgit v1.2.3