Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
FIRST_NAME LAST_NAME authored and FIRST_NAME LAST_NAME committed Jul 12, 2023
1 parent 0b52d6d commit 88ca026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
StorageClass,
TranslationUnit,
TypeKind,
UnaryOperator

)

from .model import *
Expand Down Expand Up @@ -997,7 +997,7 @@ def handle_unary_operator(self, node, context):

# Dereferencing operator is a pass through.
# All others must be processed as defined.
if op == UnaryOperator.DEREF:
if op == False: # TODO: Replace false with DEREF
unaryop = self.handle(child, context)
else:
value = self.handle(child, context)
Expand Down

0 comments on commit 88ca026

Please sign in to comment.