File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ class InputStreamOverMessageStream : public TranscoderInputStream {
7171
7272 bool Skip (int ) { return false ; } // Not implemented (no need)
7373
74- google::protobuf::int64 ByteCount () const { return 0 ; } // Not implemented
74+ int64_t ByteCount () const { return 0 ; } // Not implemented
7575
7676 int64_t BytesAvailable () const {
7777 if (position_ >= message_.size ()) {
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ class TestZeroCopyInputStream : public TranscoderInputStream {
5151 bool Next (const void ** data, int * size);
5252 void BackUp (int count);
5353 int64_t BytesAvailable () const ;
54- ::google::protobuf::int64 ByteCount () const { return 0 ; } // Not implemented
55- bool Skip (int ) { return false ; } // Not implemented
54+ int64_t ByteCount () const { return 0 ; } // Not implemented
55+ bool Skip (int ) { return false ; } // Not implemented
5656
5757 private:
5858 std::deque<std::string> chunks_;
You can’t perform that action at this time.
0 commit comments