Changeset 38093ae for src/Tuples


Ignore:
Timestamp:
Apr 18, 2024, 8:44:24 PM (20 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
19313be5, cf191ac
Parents:
748c751 (diff), 7a780ad (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:

Resolve conflict

Location:
src/Tuples
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Tuples/TupleAssignment.cc

    r748c751 r38093ae  
    3535#include "InitTweak/GenInit.h"             // for genCtorInit
    3636#include "InitTweak/InitTweak.h"           // for getPointerBase, isAssignment
     37#include "ResolvExpr/CandidateFinder.hpp"  // for CandidateFinder
    3738#include "ResolvExpr/Cost.h"               // for Cost
    3839#include "ResolvExpr/Resolver.h"           // for resolveCtorInit
  • src/Tuples/TupleExpansion.cpp

    r748c751 r38093ae  
    106106                        assignUnq = commaExpr->arg1;
    107107                }
    108                 auto finished = new ast::ObjectDecl( loc, toString( "_unq", id, "_finished_" ), new ast::BasicType( ast::BasicType::Kind::Bool ),
     108                auto finished = new ast::ObjectDecl( loc, toString( "_unq", id, "_finished_" ), new ast::BasicType( ast::BasicKind::Bool ),
    109109                        new ast::SingleInit( loc, ast::ConstantExpr::from_int( loc, 0 ) ), {}, ast::Linkage::Cforall );
    110110                declsToAddBefore.push_back( finished );
     
    175175                        new ast::ObjectDecl( location,
    176176                                "dummy",
    177                                 new ast::BasicType( ast::BasicType::SignedInt ),
     177                                new ast::BasicType( ast::BasicKind::SignedInt ),
    178178                                nullptr,
    179179                                ast::Storage::Classes(),
  • src/Tuples/Tuples.h

    r748c751 r38093ae  
    2121#include "AST/Fwd.hpp"
    2222#include "AST/Node.hpp"
    23 #include "ResolvExpr/CandidateFinder.hpp"
     23namespace ResolvExpr {
     24        class CandidateFinder;
     25}
    2426
    2527namespace Tuples {
Note: See TracChangeset for help on using the changeset viewer.