Changes between Initial Version and Version 1 of Ticket #20
- Timestamp:
- Aug 25, 2017, 11:30:45 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20 – Description
initial v1 6 6 }; 7 7 8 void ?{}( foo *this, zero_t zero ) {9 this ->i = zero;8 void ?{}( foo & this, zero_t zero ) { 9 this.i = zero; 10 10 } 11 11