From 40b5d01b065d504a7c221b7b03801abc42d158f8 Mon Sep 17 00:00:00 2001 From: dan sinclair Date: Mon, 3 Oct 2022 22:44:01 +0000 Subject: [PATCH] Remove unused Resolver::TypeDeclInfo. The TypeDeclInfo Resolver struct is not used. Removed. Bug: tint:1313 Change-Id: I45eb432c8e7bc2cf4a98ea83cf36e8e6e374e4cd Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/104461 Commit-Queue: Dan Sinclair Kokoro: Kokoro Reviewed-by: Ben Clayton --- src/tint/resolver/resolver.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/tint/resolver/resolver.h b/src/tint/resolver/resolver.h index 068fb5d1bd..657b3137e0 100644 --- a/src/tint/resolver/resolver.h +++ b/src/tint/resolver/resolver.h @@ -113,12 +113,6 @@ class Resolver { private: Validator::ValidTypeStorageLayouts valid_type_storage_layouts_; - // Structure holding information for a TypeDecl - struct TypeDeclInfo { - ast::TypeDecl const* const ast; - sem::Type* const sem; - }; - /// Resolves the program, without creating final the semantic nodes. /// @returns true on success, false on error bool ResolveInternal();