summaryrefslogtreecommitdiff
path: root/upb_parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'upb_parse.c')
-rw-r--r--upb_parse.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/upb_parse.c b/upb_parse.c
index f45ff1f..46d6d86 100644
--- a/upb_parse.c
+++ b/upb_parse.c
@@ -26,9 +26,7 @@
if(status != UPB_STATUS_OK) return status; \
} while (0)
-/* Lowest-level functions -- these read integers from the input buffer.
- * To avoid branches, none of these do bounds checking. So we force clients
- * to overallocate their buffers by >=9 bytes. */
+/* Lowest-level functions -- these read integers from the input buffer. */
static size_t min(size_t a, size_t b) { return a < b ? a : b; }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback