Ronny Otto

Results 602 comments of Ronny Otto

Assume it is the "single tick" version - any maybe it has trouble with multi line code then :) I assume this is a "bcc/bmk" bug, not a "bmx-ng" bug...

It works when not utilizing the array index access: ```Blitzmax Local fNonArray:String(n:Int) fNonArray = Func0 Print fNonArray(111) ```

Pointers to structs are legible: ``` SuperStrict Framework Brl.StandardIO Struct STest Field X:Int End Struct Local s:STest Local sP:STest Ptr = varptr s sP.X = 20 print s.X ``` so...

Can enums default to...null? Am 30. Mai 2023 14:50:53 MESZ schrieb Carl Husberg ***@***.***>: >So it should not compile? > >It seems to work fine when not used within a...

Is this bug report still valid? If so - maybe provide a failing example?

```BlitzMax SuperStrict Framework BRL.StandardIO New SomethingNeverDefined.Add() ``` ``` Building untitled1 [ 10%] Processing:untitled1.bmx Compile Error: Module 'somethingneverdefined' not found [/BlitzMaxNG/tmp/untitled1.bmx;4;0] Build Error: failed to compile (65280) /BlitzMaxNG/tmp/untitled1.bmx Process complete ```...

Anyone knowing what this line does?

reopen. Will leave it up to Brucey to close.

bump .... should be a simple removal of that "dead code path" or a closing of this issue ;-)

when is this code portion executed at all? ```Blitzmax Method TransArgs$( args:TExpr[],decl:TFuncDecl, objParam:String = Null ) 'If decl.ident="AddS" DebugStop Local t$ If objParam And (decl.IsMethod() Or decl.isCtor()) And ((Not decl.IsExtern())...