Changeset 234b1cb for src/InitTweak


Ignore:
Timestamp:
Jun 20, 2019, 2:32:55 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
b8524ca, f5edcb4
Parents:
c0f9efe
Message:

Port TupleAssignment? to new AST

Location:
src/InitTweak
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/GenInit.cc

    rc0f9efe r234b1cb  
    353353                GuardScope( managedTypes );
    354354        }
     355
     356ast::ConstructorInit * genCtorInit( const ast::ObjectDecl * objDecl ) {
     357        #warning unimplemented
     358        (void)objDecl;
     359        assert( false );
     360        return nullptr;
     361}
     362
    355363} // namespace InitTweak
    356364
  • src/InitTweak/GenInit.h

    rc0f9efe r234b1cb  
    1919#include <string>              // for string
    2020
     21#include "AST/Fwd.hpp"
     22#include "GenPoly/ScopedSet.h" // for ScopedSet
    2123#include "SynTree/SynTree.h"   // for Visitor Nodes
    22 
    23 #include "GenPoly/ScopedSet.h" // for ScopedSet
    2424
    2525namespace InitTweak {
     
    3535        /// creates an appropriate ConstructorInit node which contains a constructor, destructor, and C-initializer
    3636        ConstructorInit * genCtorInit( ObjectDecl * objDecl );
     37        ast::ConstructorInit * genCtorInit( const ast::ObjectDecl * objDecl );
    3738
    3839        class ManagedTypes {
Note: See TracChangeset for help on using the changeset viewer.