qzdoom/src/scripting/zscript
Christoph Oelckers 6d28aa3541 - do not use strtol for parsing critical values that can get large.
This function will truncate everything that is larger than LONG_MAX or smaller than LONG_MIN to fit into a long variable, but longs are 32 bit on Windows and 64 bit elsewhere, so to ensure consistency and the ability to parse larger values better use strtoll which does not truncate 32 bit values.
2017-02-01 11:19:55 +01:00
..
ast.cpp - do not use strtol for parsing critical values that can get large. 2017-02-01 11:19:55 +01:00
zcc-parse.lemon Implemented static methods in String struct. Implemented String.Format and String.AppendFormat. Implemented native vararg methods for the future. 2017-01-21 10:32:26 +01:00
zcc_compile.cpp - fixed: Non-actor classes never called InitializeDefaults to set up their special variables. 2017-01-29 18:23:39 +01:00
zcc_compile.h - fixed: Class and struct name lookup was not context aware. 2017-01-23 19:10:28 +01:00
zcc_exprlist.h added class pointer casts. Due to grammar problems the type has to be put into parentheses to get the class token out of the global parsing namespace: 2016-11-17 20:31:53 +01:00
zcc_parser.cpp - fixed: Class and struct name lookup was not context aware. 2017-01-23 19:10:28 +01:00
zcc_parser.h - removed all code that was only there to implement the broken Simplifier that just got removed. 2017-01-23 01:37:43 +01:00