Fix prototype mismatch of ByteCount in env.cc (#3614)

* Fix prototype mismatch of ByteCount in env.cc

* Change email
This commit is contained in:
Satoshi Kataoka 2016-08-04 21:57:10 -07:00 committed by Vijay Vasudevan
parent 2aec2b6759
commit e58829821c

View File

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