Skip to content

Commit 88ca026

Browse files
FIRST_NAME LAST_NAMEFIRST_NAME LAST_NAME
authored andcommitted
update
1 parent 0b52d6d commit 88ca026

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
StorageClass,
1818
TranslationUnit,
1919
TypeKind,
20-
UnaryOperator
20+
2121
)
2222

2323
from .model import *
@@ -997,7 +997,7 @@ def handle_unary_operator(self, node, context):
997997

998998
# Dereferencing operator is a pass through.
999999
# All others must be processed as defined.
1000-
if op == UnaryOperator.DEREF:
1000+
if op == False: # TODO: Replace false with DEREF
10011001
unaryop = self.handle(child, context)
10021002
else:
10031003
value = self.handle(child, context)

0 commit comments

Comments
 (0)