Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ControlStruct/HoistControlDecls.cpp

    r3b0bc16 r45040b61  
    1010// Created On       : Fri Dec  3 15:34:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Feb  1 18:59:47 2022
    13 // Update Count     : 25
     12// Last Modified On : Mon Jan 31 18:52:35 2022
     13// Update Count     : 23
    1414//
    1515
     
    3535
    3636        CompoundStmt * block = new CompoundStmt( stmt->location ); // create empty compound statement
    37         //    {}
     37        //    {
     38        //    }
    3839
    3940        for ( const Stmt * next : stmt->inits ) {                       // link conditional declarations into compound
     
    6869                return hoist<ForStmt>( stmt );
    6970        }
    70         const Stmt * postvisit( const WhileDoStmt * stmt ) {
    71                 return hoist<WhileDoStmt>( stmt );
     71        const Stmt * postvisit( const WhileStmt * stmt ) {
     72                return hoist<WhileStmt>( stmt );
    7273        }
    7374};
Note: See TracChangeset for help on using the changeset viewer.