From d5cb00928f0f49b53f863d5f41e80a05234661bc Mon Sep 17 00:00:00 2001 From: Michka Popoff Date: Wed, 26 Feb 2025 20:56:13 +0100 Subject: [PATCH] fix: remove __va_list too --- src/pygccxml/parser/scanner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pygccxml/parser/scanner.py b/src/pygccxml/parser/scanner.py index 160c308a..538adbd6 100644 --- a/src/pygccxml/parser/scanner.py +++ b/src/pygccxml/parser/scanner.py @@ -202,6 +202,7 @@ def __init__(self, xml_file, decl_factory, config, *args): # With llvm 3.9 there is a __NSConstantString(_tag) in the tree self.__declarations_to_skip = [ "__va_list_tag", + "__va_list", "__NSConstantString_tag", "__NSConstantString" ]