Skip to content

Commit a628ae0

Browse files
committed
make -Wunused-function happy
1 parent a2c1d59 commit a628ae0

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

Modules/_remote_debugging/binary_io_writer.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,6 @@ writer_write_varint_u32(BinaryWriter *writer, uint32_t value)
138138
return writer_write_bytes(writer, buf, len);
139139
}
140140

141-
/* Encode and write a varint u64 - returns 0 on success, -1 on error */
142-
static inline int
143-
writer_write_varint_u64(BinaryWriter *writer, uint64_t value)
144-
{
145-
uint8_t buf[MAX_VARINT_SIZE];
146-
size_t len = encode_varint_u64(buf, value);
147-
return writer_write_bytes(writer, buf, len);
148-
}
149-
150141

151142
/* ============================================================================
152143
* UTILITY FUNCTIONS

0 commit comments

Comments
 (0)