From e9c8a604cfc887f22e3d235cec2099f0b9253fd9 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Tue, 24 Sep 2019 10:53:53 -0700 Subject: [PATCH] Internal cleanup for ByteCount() return type. PiperOrigin-RevId: 270940285 --- tensorflow/core/platform/env.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tensorflow/core/platform/env.cc b/tensorflow/core/platform/env.cc index 495f1ad94bd..4f578a683d3 100644 --- a/tensorflow/core/platform/env.cc +++ b/tensorflow/core/platform/env.cc @@ -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 {