107 |
|
return static_cast<ArrayElement*>(fArray.UncheckedAt(idx)); |
108 |
|
|
109 |
|
ArrayElement tmp; |
110 |
< |
Fatal("At","Index too large: (%ud < %ud violated) for %s containing %s", |
111 |
< |
idx, fNumEntries, this->GetName(), tmp.GetName()); |
110 |
> |
TObject::Fatal("At","Index too large: (%ud < %ud violated) for %s containing %s", |
111 |
> |
idx, fNumEntries, this->GetName(), tmp.GetName()); |
112 |
|
return 0; |
113 |
|
} |
114 |
|
|
122 |
|
return static_cast<const ArrayElement*>(fArray.UncheckedAt(idx)); |
123 |
|
|
124 |
|
ArrayElement tmp; |
125 |
< |
Fatal("At","Index too large: (%ud < %ud violated) for %s containing %s", |
126 |
< |
idx, fNumEntries, this->GetName(), tmp.GetName()); |
125 |
> |
TObject::Fatal("At","Index too large: (%ud < %ud violated) for %s containing %s", |
126 |
> |
idx, fNumEntries, this->GetName(), tmp.GetName()); |
127 |
|
return 0; |
128 |
|
} |
129 |
|
|