Changes in src/ResolvExpr/CurrentObject.cc [954c954:98e8b3b]
- File:
-
- 1 edited
-
src/ResolvExpr/CurrentObject.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CurrentObject.cc
r954c954 r98e8b3b 594 594 class SimpleIterator final : public MemberIterator { 595 595 CodeLocation location; 596 const Type *type = nullptr;596 readonly< Type > type = nullptr; 597 597 public: 598 598 SimpleIterator( const CodeLocation & loc, const Type * t ) : location( loc ), type( t ) {} … … 630 630 class ArrayIterator final : public MemberIterator { 631 631 CodeLocation location; 632 const ArrayType *array = nullptr;633 const Type *base = nullptr;632 readonly< ArrayType > array = nullptr; 633 readonly< Type > base = nullptr; 634 634 size_t index = 0; 635 635 size_t size = 0;
Note:
See TracChangeset
for help on using the changeset viewer.