@@ -106,8 +106,8 @@ declare sub hFlushDBG _
106106 ( _
107107 byval op as integer , _
108108 byval proc as FBSYMBOL ptr, _
109- byval ex as Integer , _
110- ByVal filename As ZString Ptr _
109+ byval ex as integer , _
110+ ByVal filename As zstring ptr _
111111 )
112112
113113declare sub hFlushLIT( byval op as integer , byval text as zstring ptr )
@@ -295,8 +295,8 @@ private sub _emit _
295295 byval v2 as IRVREG ptr, _
296296 byval vr as IRVREG ptr, _
297297 byval ex1 as FBSYMBOL ptr = NULL, _
298- byval ex2 as integer = 0 , _
299- byval ex3 as ZString Ptr = 0 _
298+ byval ex2 as integer = 0 , _
299+ byval ex3 as zstring ptr = 0 _
300300 ) static
301301
302302 dim as IRTAC ptr t
@@ -682,11 +682,11 @@ private sub _emitDBG _
682682 ( _
683683 byval op as integer , _
684684 byval proc as FBSYMBOL ptr, _
685- byval ex As Integer , _
686- ByVal filename As ZString Ptr _
685+ byval ex as integer , _
686+ byval filename as zstring ptr _
687687 )
688688
689- _emit( op, NULL, NULL, NULL, proc, ex, filename )
689+ _emit( op, NULL, NULL, NULL, proc, ex, filename )
690690
691691end sub
692692
@@ -1365,7 +1365,7 @@ private sub _flush static
13651365 hFlushMEM( op, v1, v2, t->ex2, t->ex1 )
13661366
13671367 case AST_NODECLASS_DBG
1368- hFlushDBG( op, t->ex1, t->ex2, t->ex3 )
1368+ hFlushDBG( op, t->ex1, t->ex2, t->ex3 )
13691369
13701370 case AST_NODECLASS_LIT
13711371 hFlushLIT( op, cast( any ptr, t->ex1 ) )
@@ -2401,13 +2401,13 @@ private sub hFlushDBG _
24012401 ( _
24022402 byval op as integer , _
24032403 byval proc as FBSYMBOL ptr, _
2404- byval ex as Integer , _
2405- ByVal filename As ZString Ptr _
2404+ byval ex as integer , _
2405+ ByVal filename As zstring ptr _
24062406 )
24072407
24082408 select case as const op
24092409 case AST_OP_DBG_LINEINI
2410- emitDBGLineBegin( proc, ex, filename )
2410+ emitDBGLineBegin( proc, ex, filename )
24112411
24122412 case AST_OP_DBG_LINEEND
24132413 emitDBGLineEnd( proc, ex )
0 commit comments