mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-30 00:41:24 +00:00
- addressed most unused/uninitialized variable warnings from MSVC.
This commit is contained in:
parent
c6bd5c04c7
commit
01abe7b2ac
158 changed files with 94 additions and 468 deletions
|
@ -318,9 +318,9 @@ namespace StringFormat
|
|||
*/
|
||||
const char *decimal_point = ".";/* locale specific decimal point */
|
||||
int signflag; /* true if float is negative */
|
||||
int expt; /* integer value of exponent */
|
||||
int expt = 0; /* integer value of exponent */
|
||||
char expchar = 'e'; /* exponent character: [eEpP\0] */
|
||||
char *dtoaend; /* pointer to end of converted digits */
|
||||
char* dtoaend = nullptr; /* pointer to end of converted digits */
|
||||
int expsize = 0; /* character count for expstr */
|
||||
int ndig = 0; /* actual number of digits returned by dtoa */
|
||||
char expstr[MAXEXPDIG+2]; /* buffer for exponent string: e+ZZZ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue