From e69c23e596baf082d928bd18dc364ea6f846c457 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Fri, 5 May 2023 22:21:30 +0800 Subject: Squash a couple of warnings on clang (#2870) * Squash a couple of warnings on clang Redisable -Wunused-local-typedefs * unused variable --- source/slang/slang-type-layout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/slang') diff --git a/source/slang/slang-type-layout.cpp b/source/slang/slang-type-layout.cpp index 79236fc48..c7b9af40b 100644 --- a/source/slang/slang-type-layout.cpp +++ b/source/slang/slang-type-layout.cpp @@ -3720,7 +3720,7 @@ static TypeLayoutResult _createTypeLayout( // If the field has an explicit offset, then we will // use that to place it. // - if (auto packOffsetModifier = field.getDecl()->findModifier()) + if (const auto packOffsetModifier = field.getDecl()->findModifier()) { TypeLayoutResult fieldResult = _createTypeLayout( context, @@ -3733,7 +3733,7 @@ static TypeLayoutResult _createTypeLayout( } for (auto field : getFields(structDeclRef, MemberFilterStyle::Instance)) { - if (auto packOffsetModifier = field.getDecl()->findModifier()) + if (const auto packOffsetModifier = field.getDecl()->findModifier()) continue; // The fields of a `struct` type may include existential (interface) -- cgit v1.2.3