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

LibCompress/LZW: Use its own debug flag

The file still used the `GIF_DEBUG` flag from when it was a part of the
GIF decoder. Let's give `LZWDecoder` its own flag.
This commit is contained in:
Lucas CHOLLET 2023-11-09 22:54:56 -05:00 committed by Andreas Kling
parent fcaebe56d7
commit 86ee7d219e
3 changed files with 7 additions and 2 deletions

View file

@ -282,6 +282,10 @@
# cmakedefine01 LZMA_DEBUG
#endif
#ifndef LZW_DEBUG
# cmakedefine01 LZW_DEBUG
#endif
#ifndef MALLOC_DEBUG
# cmakedefine01 MALLOC_DEBUG
#endif