From 99d51957d657fe4f4adbda3ebd309c8b9b3112e0 Mon Sep 17 00:00:00 2001 From: Anarchos Date: Wed, 16 Jul 2025 18:52:07 +0000 Subject: [PATCH] Adding a missing definition for compiling in debug mode Adding a missing line from sourceforge. --- bepdf/beos/Annotation.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bepdf/beos/Annotation.cpp b/bepdf/beos/Annotation.cpp index 5686780..db74de4 100644 --- a/bepdf/beos/Annotation.cpp +++ b/bepdf/beos/Annotation.cpp @@ -1354,6 +1354,9 @@ Annotations::Annotations(Object* annots, BePDFAcroForm* acroForm) Object subType; if (annot.dictLookup("Subtype", &subType) && subType.isName()) { + #ifdef DEBUG + const char* s = subType.getName(); + #endif Annotation* a = NULL; LOG(s); if (subType.isName("Text")) {