Merge pull request #361 from ahmetsait/master

Fix annoying dscanner warning: Empty declaration
This commit is contained in:
Adam D. Ruppe 2023-02-04 07:41:45 -05:00 committed by GitHub
commit 1793d8e43b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;