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 {
71
71
72
72
bool Skip (int ) { return false ; } // Not implemented (no need)
73
73
74
- google::protobuf::int64 ByteCount () const { return 0 ; } // Not implemented
74
+ int64_t ByteCount () const { return 0 ; } // Not implemented
75
75
76
76
int64_t BytesAvailable () const {
77
77
if (position_ >= message_.size ()) {
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ class TestZeroCopyInputStream : public TranscoderInputStream {
51
51
bool Next (const void ** data, int * size);
52
52
void BackUp (int count);
53
53
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
56
56
57
57
private:
58
58
std::deque<std::string> chunks_;
You can’t perform that action at this time.
0 commit comments