blob: 09f8fff6950c1e3363957bef1ad947c714d8b6ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- a/c++/src/io/InputStream.cc
+++ b/c++/src/io/InputStream.cc
@@ -115,1 +115,1 @@ namespace orc {
- google::protobuf::int64 SeekableArrayInputStream::ByteCount() const {
+ int64_t SeekableArrayInputStream::ByteCount() const {
--- a/c++/src/io/InputStream.hh
+++ b/c++/src/io/InputStream.hh
@@ -76,1 +76,1 @@ namespace orc {
- virtual google::protobuf::int64 ByteCount() const override;
+ virtual int64_t ByteCount() const override;
--- a/c++/src/io/OutputStream.cc
+++ b/c++/src/io/OutputStream.cc
@@ -67,1 +67,1 @@ namespace orc {
- google::protobuf::int64 BufferedOutputStream::ByteCount() const {
+ int64_t BufferedOutputStream::ByteCount() const {
--- a/c++/src/io/OutputStream.hh
+++ b/c++/src/io/OutputStream.hh
@@ -55,1 +55,1 @@ namespace orc {
- virtual google::protobuf::int64 ByteCount() const override;
+ virtual int64_t ByteCount() const override;
|