Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/TypeData.cc

    r409433da r615a096  
    1010// Created On       : Sat May 16 15:12:51 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Mar 17 15:52:43 2017
    13 // Update Count     : 563
     12// Last Modified On : Fri Mar 17 08:46:10 2017
     13// Update Count     : 560
    1414//
    1515
     
    619619        switch ( td->aggregate.kind ) {
    620620          case DeclarationNode::Struct:
    621           case DeclarationNode::Coroutine:
    622           case DeclarationNode::Monitor:
    623           case DeclarationNode::Thread:
    624                 at = new StructDecl( *td->aggregate.name, td->aggregate.kind, attributes );
     621                at = new StructDecl( *td->aggregate.name, attributes );
    625622                buildForall( td->aggregate.params, at->get_parameters() );
    626623                break;
     
    659656                          switch ( type->aggregate.kind ) {
    660657                                case DeclarationNode::Struct:
    661                                 case DeclarationNode::Coroutine:
    662                                 case DeclarationNode::Monitor:
    663                                 case DeclarationNode::Thread:
    664658                                  ret = new StructInstType( buildQualifiers( type ), (StructDecl *)typedecl );
    665659                                  break;
     
    677671                          switch ( type->aggregate.kind ) {
    678672                                case DeclarationNode::Struct:
    679                                 case DeclarationNode::Coroutine:
    680                                 case DeclarationNode::Monitor:
    681                                 case DeclarationNode::Thread:
    682673                                  ret = new StructInstType( buildQualifiers( type ), *type->aggregate.name );
    683674                                  break;
     
    712703                  switch ( type->aggregate.kind ) {
    713704                        case DeclarationNode::Struct:
    714                         case DeclarationNode::Coroutine:
    715                         case DeclarationNode::Monitor:
    716                         case DeclarationNode::Thread:
    717705                          ret = new StructInstType( buildQualifiers( type ), *type->aggregate.name );
    718706                          break;
Note: See TracChangeset for help on using the changeset viewer.