Changeset 112fe04 for src/AST/Decl.hpp


Ignore:
Timestamp:
May 21, 2019, 3:35:39 PM (5 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
ca8704f
Parents:
e0016a5
Message:

Work on ConverterNewToOld?, filled in declarations and cleaned up statements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Decl.hpp

    re0016a5 r112fe04  
    329329class StaticAssertDecl : public Decl {
    330330public:
    331         ptr<Expr> condition;
     331        ptr<Expr> cond;
    332332        ptr<ConstantExpr> msg;   // string literal
    333333
    334334        StaticAssertDecl( const CodeLocation & loc, const Expr * condition, const ConstantExpr * msg )
    335         : Decl( loc, "", {}, {} ), condition( condition ), msg( msg ) {}
     335        : Decl( loc, "", {}, {} ), cond( condition ), msg( msg ) {}
    336336
    337337        const StaticAssertDecl * accept( Visitor &v ) const override { return v.visit( this ); }
Note: See TracChangeset for help on using the changeset viewer.