From 549203d05dc8d25d191a95367fbcc82bb2b47032 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 13 Nov 2024 13:36:46 +0900 Subject: [PATCH] [qfcc] Correct a comment --- tools/qfcc/include/expr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/include/expr.h b/tools/qfcc/include/expr.h index afbc0eaf0..747a90592 100644 --- a/tools/qfcc/include/expr.h +++ b/tools/qfcc/include/expr.h @@ -770,7 +770,7 @@ const float *expr_quaternion (const expr_t *e) __attribute__((pure)); const expr_t *new_int_expr (int int_val, bool implicit); int expr_int (const expr_t *e) __attribute__((pure)); -/** Create a new int constant expression node. +/** Create a new uint constant expression node. \param uint_val The int constant being represented. \return The new int constant expression node