mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 17:11:32 +00:00
manpage: -Wuninitialized-constant -Wuninitialized-global
This commit is contained in:
parent
9315577be6
commit
898e00f5b4
1 changed files with 9 additions and 0 deletions
|
@ -261,6 +261,15 @@ the actual attribute syntax is better defined.
|
||||||
.TP
|
.TP
|
||||||
.B -Wreserved-names
|
.B -Wreserved-names
|
||||||
Warn when using reserved names such as 'nil'.
|
Warn when using reserved names such as 'nil'.
|
||||||
|
.TP
|
||||||
|
.B -Wuninitialized-constant
|
||||||
|
Warn about global constants (using the 'const' keyword) with no
|
||||||
|
assigned value.
|
||||||
|
.TP
|
||||||
|
.B -Wuninitialized-global
|
||||||
|
Warn about global variables with no initializing value. This is off by
|
||||||
|
default, and is added mostly to help find null-values which are
|
||||||
|
supposed to be replaced by the untyped 'nil' constant.
|
||||||
.SH COMPILE FLAGS
|
.SH COMPILE FLAGS
|
||||||
.TP
|
.TP
|
||||||
.B -fdarkplaces-string-table-bug
|
.B -fdarkplaces-string-table-bug
|
||||||
|
|
Loading…
Reference in a new issue