Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ControlStruct/MLEMutator.h

    r9bdb8b7 r720a007  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Oct 22 17:22:47 2019
    13 // Update Count     : 45
     12// Last Modified On : Thu Mar  8 16:42:32 2018
     13// Update Count     : 41
    1414//
    1515
     
    4747                void premutate( SwitchStmt *switchStmt );
    4848                Statement * postmutate( SwitchStmt *switchStmt );
    49                 void premutate( TryStmt *tryStmt );
    50                 Statement * postmutate( TryStmt *tryStmt );
    5149
    5250                Statement *mutateLoop( Statement *bodyLoop, Entry &e );
     
    7573                        explicit Entry( SwitchStmt *stmt, Label breakExit, Label fallDefaultExit ) :
    7674                                stmt( stmt ), breakExit( breakExit ), fallDefaultExit( fallDefaultExit ) {}
    77 
    78                         explicit Entry( TryStmt *stmt, Label breakExit ) :
    79                                 stmt( stmt ), breakExit( breakExit ) {}
    8075
    8176                        bool operator==( const Statement *other ) { return stmt == other; }
Note: See TracChangeset for help on using the changeset viewer.