| 171 | } |
| 172 | |
| 173 | inline BOOL ByteStreamOutArray::seekEnd() |
| 174 | { |
| 175 | curr = size; |
| 176 | return TRUE; |
| 177 | |
| 178 | /* |
| 179 | if ((0 <= distance) && (distance <= size)) |
| 180 | { |
| 181 | curr = size - distance; |
| 182 | return TRUE; |
| 183 | } |
| 184 | return FALSE; |
| 185 | */ |
| 186 | } |
| 187 | |
| 188 | inline ByteStreamOutArrayLE::ByteStreamOutArrayLE(I64 alloc) : ByteStreamOutArray(alloc) |
| 189 | { |
nothing calls this directly
no outgoing calls
no test coverage detected