Changeset 3257 in Sophya
- Timestamp:
- May 27, 2007, 11:51:25 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Eval/JET/smtx.cc
r2798 r3257 19 19 : MtxSize(), JETExpression<T, JETExpMtx<T> >(), dbv_(&data_, this) 20 20 { 21 Expression().JETExpMtxSet(&data_, this);21 this->Expression().JETExpMtxSet(&data_, this); 22 22 } 23 23 … … 26 26 : MtxSize(nr, nc), JETExpression<T, JETExpMtx<T> >(), data_(nr*nc), dbv_(&data_, this) 27 27 { 28 Expression().JETExpMtxSet(&data_, this);28 this->Expression().JETExpMtxSet(&data_, this); 29 29 } 30 30 … … 33 33 : MtxSize(m), JETExpression<T, JETExpMtx<T> >(), data_(m.data_), dbv_(&data_, this) 34 34 { 35 Expression().JETExpMtxSet(&data_, this);35 this->Expression().JETExpMtxSet(&data_, this); 36 36 } 37 37
Note:
See TracChangeset
for help on using the changeset viewer.