-
whotookcha0s-_- committed revision 5158 to the FreeBASIC Compiler SVN repository, changing 3 files.
2008-10-15 03:55:12 UTC in FreeBASIC Compiler
-
Fixed. Added a new function for checking a string (zstring ptr) for being a valid symbol also.
2008-09-07 23:50:00 UTC in FreeBASIC Compiler
-
whotookcha0s-_- committed revision 5118 to the FreeBASIC Compiler SVN repository, changing 5 files.
2008-09-07 23:48:48 UTC in FreeBASIC Compiler
-
Fixed, there seemed to be some missing null ptr checks there.
2008-09-07 22:22:09 UTC in FreeBASIC Compiler
-
Fixed, there seemed to be some missing null ptr checks there.
2008-09-07 22:11:07 UTC in FreeBASIC Compiler
-
whotookcha0s-_- committed revision 5117 to the FreeBASIC Compiler SVN repository, changing 4 files.
2008-09-07 22:10:39 UTC in FreeBASIC Compiler
-
This is not only a bug with var, but variable initializers in general. You can change line 23 to
dim as mytype m2 = m
and the bug is still exhibited. It will be worked on shortly.
In the second case, this is correct compiler behavior, not a bug. If you do 'var m = m2', the compiler should not call the LET operator, but the constructor taking a byref parameter of it's own type (copy...
2008-09-07 19:45:39 UTC in FreeBASIC Compiler
-
whotookcha0s-_- committed revision 5104 to the FreeBASIC Compiler SVN repository, changing 1 files.
2008-08-31 08:19:38 UTC in FreeBASIC Compiler
-
whotookcha0s-_- committed revision 5102 to the FreeBASIC Compiler SVN repository, changing 1 files.
2008-08-28 16:13:18 UTC in FreeBASIC Compiler
-
Only way I can think to solve this one would be to pass the result of screen as a byref integer parameter, so we could use the real result to set ERR.
This would break libraries compiled with previous versions (oh well, not a big deal, IMO)
Also I'm not sure how this could be implemented, because then the result would have to be known at the call of screen, so it could be passed, which...
2008-08-17 21:28:34 UTC in FreeBASIC Compiler