From 36204b16e853f7f15b40c0310c4e8def92cc102b Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sat, 5 Feb 2022 17:37:06 +0000 Subject: [PATCH] removed an annoying comma in the syncode enumerator definition --- hcl/lib/hcl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hcl/lib/hcl.h b/hcl/lib/hcl.h index cc0d5b4..7ddde8f 100644 --- a/hcl/lib/hcl.h +++ b/hcl/lib/hcl.h @@ -1850,7 +1850,7 @@ enum hcl_syncode_t HCL_SYNCODE_THROW, HCL_SYNCODE_TRY, HCL_SYNCODE_UNTIL, - HCL_SYNCODE_WHILE, + HCL_SYNCODE_WHILE }; typedef enum hcl_syncode_t hcl_syncode_t;