Changeset 2693 in Sophya for trunk/SophyaLib/HiStats
- Timestamp:
- Apr 26, 2005, 2:06:24 PM (20 years ago)
- Location:
- trunk/SophyaLib/HiStats
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/basedtable.cc
r2688 r2693 513 513 rets += '='; 514 514 515 sprintf(buff,"%s[%ld]; ", nomx, i);515 sprintf(buff,"%s[%ld]; ", nomx, (long)i); 516 516 rets += buff; 517 517 if ( (i%3 == 0) && (i > 0) ) rets += "\n"; -
trunk/SophyaLib/HiStats/datatable.h
r2691 r2693 23 23 virtual sa_size_t AddColumn(FieldType ft, string const & cnom); 24 24 25 //! Equal (copy) operator - Copies the data and the structure if necessary from \b a 26 inline DataTable& operator = (BaseDataTable const& a) 27 { CopyMerge(a, true) ; return *this ; } 28 //! Equal (copy) operator - Copies the data and the structure if necessary from \b a 25 29 inline DataTable& operator = (DataTable const& a) 26 30 { CopyMerge(a, true) ; return *this ; }
Note:
See TracChangeset
for help on using the changeset viewer.