mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 00:10:52 +00:00
[doc] Update doxygen config via doxygen
Also, fix some missing docs. Unfortunately, there are still some problems (incorrect resolution for multiple files/functions with the same name, and a bug with doxygen's verbatim/code blocks).
This commit is contained in:
parent
addf877416
commit
88c67b3575
2 changed files with 581 additions and 272 deletions
File diff suppressed because it is too large
Load diff
|
@ -678,6 +678,8 @@ const char *expr_string (const expr_t *e) __attribute__((pure));
|
|||
/** Create a new double constant expression node.
|
||||
|
||||
\param double_val The double constant being represented.
|
||||
\param implicit The constant was implicit and should be auto-cast
|
||||
without diagnostics
|
||||
\return The new double constant expression node
|
||||
(expr_t::e::double_val).
|
||||
*/
|
||||
|
@ -687,6 +689,8 @@ double expr_double (const expr_t *e) __attribute__((pure));
|
|||
/** Create a new float constant expression node.
|
||||
|
||||
\param float_val The float constant being represented.
|
||||
\param implicit The constant was implicit and should be auto-cast
|
||||
without diagnostics
|
||||
\return The new float constant expression node
|
||||
(expr_t::e::float_val).
|
||||
*/
|
||||
|
@ -758,6 +762,8 @@ const float *expr_quaternion (const expr_t *e) __attribute__((pure));
|
|||
/** Create a new itn constant expression node.
|
||||
|
||||
\param int_val The int constant being represented.
|
||||
\param implicit The constant was implicit and should be auto-cast
|
||||
without diagnostics
|
||||
\return The new int constant expression node
|
||||
(expr_t::e::int_val).
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue