From 439c6d71592cdfdcfe4a752272d33d60439f69ec Mon Sep 17 00:00:00 2001 From: Vijay Vasudevan Date: Thu, 4 Aug 2016 22:59:46 -0700 Subject: [PATCH] Revert "Fix prototype mismatch of ByteCount in env.cc" (#3661) --- tensorflow/core/platform/env.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/core/platform/env.cc b/tensorflow/core/platform/env.cc index 9a1e494c737..6a40a51e3f1 100644 --- a/tensorflow/core/platform/env.cc +++ b/tensorflow/core/platform/env.cc @@ -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 {