Changes in src/ResolvExpr/Alternative.h [234b1cb:fd642d2]
- File:
-
- 1 edited
-
src/ResolvExpr/Alternative.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Alternative.h
r234b1cb 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.