Internal cleanup for ByteCount() return type.

PiperOrigin-RevId: 270940285
This commit is contained in:
A. Unique TensorFlower 2019-09-24 10:53:53 -07:00 committed by TensorFlower Gardener
parent 2405e8a159
commit e9c8a604cf

View File

@ -472,9 +472,7 @@ class FileStream : public ::tensorflow::protobuf::io::ZeroCopyInputStream {
pos_ += count;
return true;
}
int64_t ByteCount() const override {
return pos_;
}
int64_t ByteCount() const override { return pos_; }
Status status() const { return status_; }
bool Next(const void** data, int* size) override {