Fix annoying dscanner warning: Empty declaration

This commit is contained in:
Ahmet Sait 2023-02-04 15:16:54 +03:00
parent 6bc4bcd814
commit 8393a4d6a5
1 changed files with 1 additions and 1 deletions

2
jpeg.d
View File

@ -95,7 +95,7 @@ enum /*JPEG_MARKER*/ {
}
alias JPEG_SUBSAMPLING = int;
enum /*JPEG_SUBSAMPLING*/ { JPGD_GRAYSCALE = 0, JPGD_YH1V1, JPGD_YH2V1, JPGD_YH1V2, JPGD_YH2V2 };
enum /*JPEG_SUBSAMPLING*/ { JPGD_GRAYSCALE = 0, JPGD_YH1V1, JPGD_YH2V1, JPGD_YH1V2, JPGD_YH2V2 }
enum CONST_BITS = 13;
enum PASS1_BITS = 2;