- Timestamp:
- 09/10/04 09:51:06 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4915 r4916 25 25 - removed some obsolete const_casts 26 26 - fixed an (un)signed comparison warning 27 28 * mbase/MArray*.h: 29 - added const &operator[](UInt_t i) const 27 30 28 31 -
trunk/MagicSoft/Mars/mbase/MArrayI.h
r4752 r4916 151 151 return fArray[i]; 152 152 } 153 const Int_t &operator[](UInt_t i) const 154 { 155 return fArray[i]; 156 } 153 157 154 158 ClassDef(MArrayI, 1) //Array of Int_t -
trunk/MagicSoft/Mars/mbase/MArrayS.h
r1014 r4916 159 159 return fArray[i]; 160 160 } 161 const UShort_t &operator[](UInt_t i) const 162 { 163 return fArray[i]; 164 } 161 165 162 166 ClassDef(MArrayS, 1) //Array of UShort_t
Note:
See TracChangeset
for help on using the changeset viewer.