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 @@ -1869,7 +1869,7 @@ bool IOBufAsZeroCopyInputStream::Skip(int count) {
1869
1869
return false ;
1870
1870
}
1871
1871
1872
- google::protobuf::int64 IOBufAsZeroCopyInputStream::ByteCount () const {
1872
+ int64_t IOBufAsZeroCopyInputStream::ByteCount () const {
1873
1873
return _byte_count;
1874
1874
}
1875
1875
@@ -1990,7 +1990,7 @@ void IOBufAsZeroCopyOutputStream::BackUp(int count) {
1990
1990
LOG_IF (FATAL, count != 0 ) << " BackUp an empty IOBuf" ;
1991
1991
}
1992
1992
1993
- google::protobuf::int64 IOBufAsZeroCopyOutputStream::ByteCount () const {
1993
+ int64_t IOBufAsZeroCopyOutputStream::ByteCount () const {
1994
1994
return _byte_count;
1995
1995
}
1996
1996
Original file line number Diff line number Diff line change 29
29
// // Interfaces of ZeroCopyOutputStream
30
30
// bool Next(void** data, int* size);
31
31
// void BackUp(int count);
32
- // google::protobuf::int64 ByteCount() const;
32
+ // int64_t ByteCount() const;
33
33
//
34
34
// private:
35
35
// IOBuf* _buf;
You can’t perform that action at this time.
0 commit comments