Skip to content

Commit cd17890

Browse files
Internal change
PiperOrigin-RevId: 758877320
1 parent a014dbb commit cd17890

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/google/protobuf/io/coded_stream.h

+6
Original file line numberDiff line numberDiff line change
@@ -785,6 +785,12 @@ class PROTOBUF_EXPORT EpsCopyOutputStream {
785785
ptr);
786786
}
787787

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+
788794
// Returns true if there was an underlying I/O error since this object was
789795
// created.
790796
bool HadError() const { return had_error_; }

0 commit comments

Comments
 (0)