Changeset 42107b4 for src/SymTab


Ignore:
Timestamp:
Apr 26, 2018, 1:32:53 PM (6 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
new-env, with_gc
Children:
7a37f25
Parents:
1cdfa82
git-author:
Aaron Moss <a3moss@…> (04/25/18 17:44:18)
git-committer:
Aaron Moss <a3moss@…> (04/26/18 13:32:53)
Message:

Leftover cleanup from merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Validate.cc

    r1cdfa82 r42107b4  
    312312                } // if
    313313                // Always remove the hoisted aggregate from the inner structure.
    314                 GuardAction( [aggregateDecl]() { filter( aggregateDecl->members, shouldHoist, false ); } );
     314                GuardAction( [aggregateDecl]() { filter( aggregateDecl->members, shouldHoist ); } );
    315315        }
    316316
     
    692692                                new_static_root<BasicType>( Type::Qualifiers(), BasicType::LongUnsignedInt );
    693693                }
    694                 filter( translationUnit, isTypedef, true );
     694                filter( translationUnit, isTypedef );
    695695        }
    696696
     
    829829                        } // if
    830830                        return false;
    831                 }, true);
     831                } );
    832832                return compoundStmt;
    833833        }
     
    837837        template<typename AggDecl>
    838838        AggDecl *EliminateTypedef::handleAggregate( AggDecl * aggDecl ) {
    839                 filter( aggDecl->members, isTypedef, true );
     839                filter( aggDecl->members, isTypedef );
    840840                return aggDecl;
    841841        }
Note: See TracChangeset for help on using the changeset viewer.