From 1046d778a2a975836e2bfaf6bad3d5fde6dfaf2a Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Wed, 9 Mar 2022 16:35:13 -0800 Subject: [PATCH] Removed debug print statements. --- upb/decode.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/upb/decode.c b/upb/decode.c index 67074f5cba..cf476a4ad3 100644 --- a/upb/decode.c +++ b/upb/decode.c @@ -416,19 +416,15 @@ static bool decode_checkenum_slow(upb_Decoder* d, const char* ptr, return false; } -#include UPB_FORCEINLINE static bool decode_checkenum(upb_Decoder* d, const char* ptr, upb_Message* msg, const upb_MiniTable_Enum* e, const upb_MiniTable_Field* field, wireval* val) { uint32_t v = val->uint32_val; - // printf("@test:we are here\n"); if (UPB_LIKELY(v < 64) && UPB_LIKELY(((1ULL << v) & e->mask))) return true; - // printf("@test:we are here 2\n"); bool ans = decode_checkenum_slow(d, ptr, msg, e, field, v); - // printf("@test:%d\n", (int)ans); return ans; }