Ignore:
Timestamp:
Apr 25, 2018, 4:55:53 PM (6 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
new-env, with_gc
Children:
42107b4
Parents:
2efe4b8 (diff), 9d5fb67 (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 remote-tracking branch 'origin/master' into with_gc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ControlStruct/ExceptTranslate.cc

    r2efe4b8 r1cdfa82  
    3434#include "SynTree/Statement.h"        // for CompoundStmt, CatchStmt, ThrowStmt
    3535#include "SynTree/Type.h"             // for FunctionType, Type, noQualifiers
    36 #include "SynTree/VarExprReplacer.h"  // for VarExprReplacer, VarExprReplace...
     36#include "SynTree/DeclReplacer.h"     // for DeclReplacer
    3737#include "SynTree/Visitor.h"          // for acceptAll
    3838
     
    311311                        // Update variables in the body to point to this local copy.
    312312                        {
    313                                 VarExprReplacer::DeclMap mapping;
     313                                DeclReplacer::DeclMap mapping;
    314314                                mapping[ handler_decl ] = local_except;
    315                                 VarExprReplacer::replace( handler->body, mapping );
     315                                DeclReplacer::replace( handler->body, mapping );
    316316                        }
    317317
Note: See TracChangeset for help on using the changeset viewer.