From da9c4e570545d5306a0090662575245c11393a52 Mon Sep 17 00:00:00 2001 From: assiduous Date: Thu, 5 Nov 2020 18:45:33 -0800 Subject: Fixed gcc/clang compiler issue --- Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Graphics/GraphicsEngineVulkan') diff --git a/Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp index bd95d81b..8680b819 100644 --- a/Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp +++ b/Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp @@ -199,10 +199,10 @@ public: struct Properties { - const Uint32 ShaderGroupHandleSize = 0; - const Uint32 MaxShaderRecordStride = 0; - const Uint32 ShaderGroupBaseAlignment = 0; - const Uint32 MaxDrawMeshTasksCount = 0; + const Uint32 ShaderGroupHandleSize; + const Uint32 MaxShaderRecordStride; + const Uint32 ShaderGroupBaseAlignment; + const Uint32 MaxDrawMeshTasksCount; }; const Properties& GetProperties() const -- cgit v1.2.3