Changeset 8fc15cf for src/ResolvExpr/Alternative.h
- Timestamp:
- Jul 23, 2019, 4:46:33 PM (6 years ago)
- 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:
- 83b52f1
- Parents:
- d6b03b7 (diff), fd642d2 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Alternative.h
rd6b03b7 r8fc15cf 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.