Changeset fd642d2 for src/ResolvExpr/Alternative.h
- Timestamp:
- Jul 22, 2019, 2:19:57 PM (4 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8fc15cf, c60a664
- Parents:
- 884f1409
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Alternative.h
r884f1409 rfd642d2 29 29 /// One assertion to resolve 30 30 struct AssertionItem { 31 DeclarationWithType* decl;31 const DeclarationWithType* decl; 32 32 AssertionSetValue info; 33 33 34 34 AssertionItem() = default; 35 AssertionItem( DeclarationWithType* decl, const AssertionSetValue& info )35 AssertionItem( const DeclarationWithType* decl, const AssertionSetValue& info ) 36 36 : decl(decl), info(info) {} 37 37 AssertionItem( const AssertionSet::value_type& e ) : decl(e.first), info(e.second) {}
Note: See TracChangeset
for help on using the changeset viewer.