Revert "Fix prototype mismatch of ByteCount in env.cc" (#3661)

This commit is contained in:
Vijay Vasudevan 2016-08-04 22:59:46 -07:00 committed by GitHub
parent c99b9bef4c
commit 439c6d7159

View File

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