From 4e93b70f8aefbba18f8db70e5e388bdbcf7b0a38 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 17 Mar 2019 14:48:32 +0000 Subject: [PATCH] Fix bit_field scoping bug --- src/check_type.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/check_type.cpp b/src/check_type.cpp index 451a388fb..1721ed881 100644 --- a/src/check_type.cpp +++ b/src/check_type.cpp @@ -2507,7 +2507,9 @@ bool check_type_internal(CheckerContext *ctx, Ast *e, Type **type, Type *named_t case_ast_node(et, BitFieldType, e); *type = alloc_type_bit_field(); set_base_type(named_type, *type); + check_open_scope(ctx, e); check_bit_field_type(ctx, *type, e); + check_close_scope(ctx); return true; case_end;