We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a014dbb commit cd17890Copy full SHA for cd17890
src/google/protobuf/io/coded_stream.h
@@ -785,6 +785,12 @@ class PROTOBUF_EXPORT EpsCopyOutputStream {
785
ptr);
786
}
787
788
+ template <int kElementSize>
789
+ PROTOBUF_ALWAYS_INLINE uint8_t* WriteRawNumericArrayLittleEndian(
790
+ const void* data, int size, uint8_t* ptr) {
791
+ return WriteRawLittleEndian<kElementSize>(data, size, ptr);
792
+ }
793
+
794
// Returns true if there was an underlying I/O error since this object was
795
// created.
796
bool HadError() const { return had_error_; }
0 commit comments