From 572ba75d1cab81f6c0a3073b7de2ec1365f29446 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Tue, 10 Dec 2019 17:14:48 -0800 Subject: [PATCH] Removed comma after final enumerator. --- upb/upb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upb/upb.h b/upb/upb.h index aec97e0611..b64e4b1697 100644 --- a/upb/upb.h +++ b/upb/upb.h @@ -326,7 +326,7 @@ typedef enum { UPB_TYPE_UINT64 = 9, /* Types stored as upb_strview (2 * void*) (probably 8 or 16 bytes). */ UPB_TYPE_STRING = 10, - UPB_TYPE_BYTES = 11, + UPB_TYPE_BYTES = 11 } upb_fieldtype_t; /* The repeated-ness of each field; this matches descriptor.proto. */