Skip to content

Commit

Permalink
fbc: fix warning in src/compiler/parser-expr-unary.bas
Browse files Browse the repository at this point in the history
  • Loading branch information
jayrm committed Jul 23, 2023
1 parent b4bea3e commit 7846b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/parser-expr-unary.bas
Expand Up @@ -500,7 +500,7 @@ private function hProcPtrBody _

'' resolve overloaded procs
if( parser.ctxsym <> NULL ) then
if( symbIsOverloaded( proc ) or check_exact ) then
if( symbIsOverloaded( proc ) orelse check_exact ) then
dim as FBSYMBOL ptr sym = any
sym = hProcPtrResolveOverload( proc, parser.ctxsym )

Expand Down

0 comments on commit 7846b0e

Please sign in to comment.