1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:47:35 +00:00

LibPDF: Call dbgln() for unimplemented flex upcodes

This commit is contained in:
Nico Weber 2023-10-27 12:50:09 -04:00 committed by Tim Flynn
parent e484fae8e1
commit 4cc24548f6

View file

@ -500,6 +500,7 @@ PDFErrorOr<Type1FontProgram::Glyph> Type1FontProgram::parse_glyph(ReadonlyBytes
case Hflex1:
case Flex1:
// TODO: implement these
dbgln_if(PDF_DEBUG, "Unimplemented flex: 12 {}", data[i]);
state.sp = 0;
break;