Index: third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h |
diff --git a/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h b/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h |
index 3365790e1a2259eb20a02339648e77eeb2a5ff58..0746fa6afe696ff2176fae6696e14080a9e260eb 100644 |
--- a/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h |
+++ b/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h |
@@ -218,7 +218,7 @@ class LIBPROTOBUF_EXPORT IstreamInputStream : public ZeroCopyInputStream { |
// If a block_size is given, it specifies the number of bytes that |
// should be read and returned with each call to Next(). Otherwise, |
// a reasonable default is used. |
- explicit IstreamInputStream(std::istream* stream, int block_size = -1); |
+ explicit IstreamInputStream(istream* stream, int block_size = -1); |
~IstreamInputStream(); |
// implements ZeroCopyInputStream ---------------------------------- |
@@ -230,7 +230,7 @@ class LIBPROTOBUF_EXPORT IstreamInputStream : public ZeroCopyInputStream { |
private: |
class LIBPROTOBUF_EXPORT CopyingIstreamInputStream : public CopyingInputStream { |
public: |
- CopyingIstreamInputStream(std::istream* input); |
+ CopyingIstreamInputStream(istream* input); |
~CopyingIstreamInputStream(); |
// implements CopyingInputStream --------------------------------- |
@@ -239,7 +239,7 @@ class LIBPROTOBUF_EXPORT IstreamInputStream : public ZeroCopyInputStream { |
private: |
// The stream. |
- std::istream* input_; |
+ istream* input_; |
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(CopyingIstreamInputStream); |
}; |
@@ -262,7 +262,7 @@ class LIBPROTOBUF_EXPORT OstreamOutputStream : public ZeroCopyOutputStream { |
// If a block_size is given, it specifies the size of the buffers |
// that should be returned by Next(). Otherwise, a reasonable default |
// is used. |
- explicit OstreamOutputStream(std::ostream* stream, int block_size = -1); |
+ explicit OstreamOutputStream(ostream* stream, int block_size = -1); |
~OstreamOutputStream(); |
// implements ZeroCopyOutputStream --------------------------------- |
@@ -273,7 +273,7 @@ class LIBPROTOBUF_EXPORT OstreamOutputStream : public ZeroCopyOutputStream { |
private: |
class LIBPROTOBUF_EXPORT CopyingOstreamOutputStream : public CopyingOutputStream { |
public: |
- CopyingOstreamOutputStream(std::ostream* output); |
+ CopyingOstreamOutputStream(ostream* output); |
~CopyingOstreamOutputStream(); |
// implements CopyingOutputStream -------------------------------- |
@@ -281,7 +281,7 @@ class LIBPROTOBUF_EXPORT OstreamOutputStream : public ZeroCopyOutputStream { |
private: |
// The stream. |
- std::ostream* output_; |
+ ostream* output_; |
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(CopyingOstreamOutputStream); |
}; |