This commit is contained in:
Abdelrahman Said 2025-04-20 21:32:38 +01:00
parent b476ceaeef
commit a479a43f4c

View File

@ -46,7 +46,7 @@ class CQualifier(Enum):
class CPointerType(Enum): class CPointerType(Enum):
NONE = "" NONE = ""
SINGLE = "*" SINGLE = "*"
DOUBLE = "**" DOUBLE = "**"
def __str__(self) -> str: def __str__(self) -> str:
return self.value return self.value