Changeset 395fc37 for src/InitTweak


Ignore:
Timestamp:
Mar 16, 2017, 6:14:32 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
615a096
Parents:
6f95000 (diff), 1fbab5a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg2:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/GenInit.cc

    r6f95000 r395fc37  
    218218
    219219        bool CtorDtor::isManaged( Type * type ) const {
     220                // need to clear and reset qualifiers when determining if a type is managed
     221                ValueGuard< Type::Qualifiers > qualifiers( type->get_qualifiers() );
     222                type->get_qualifiers() = Type::Qualifiers();
    220223                if ( TupleType * tupleType = dynamic_cast< TupleType * > ( type ) ) {
    221224                        // tuple is also managed if any of its components are managed
Note: See TracChangeset for help on using the changeset viewer.