From a26181551f7752b8ad05a9054b220ebcb42a3997 Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 31 Jan 2025 12:57:41 +0100 Subject: [PATCH] Fix stripping #if-s from the docs. --- tools/doc/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/doc/main.cpp b/tools/doc/main.cpp index e974b52..a6167a0 100644 --- a/tools/doc/main.cpp +++ b/tools/doc/main.cpp @@ -145,7 +145,7 @@ List process_classes_and_structs(const List &list) { if (l.strip_edges(true, false).begins_with("#")) { // Skip #if-s // Note this will fail for multi line defines, But those currently does not appear in class definitions - stripped += l + "\n"; + //stripped += l + "\n"; continue; }