mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-02 23:41:28 +00:00
[qfcc] Limit final check to non-math types
All math types (of the same width) are assignable, though warnings might be issued, thus the type_assignable check used for block structs was too broad resulting in incorrect specialization of generics.
This commit is contained in:
parent
3190daaf70
commit
71e6ff78c7
1 changed files with 1 additions and 1 deletions
|
@ -688,7 +688,7 @@ check_type (const type_t *type, callparm_t param, unsigned *cost, bool promote)
|
|||
return true;
|
||||
}
|
||||
// allow any final checks
|
||||
if (!type_assignable (type, param.type)) {
|
||||
if (is_math (type) || !type_assignable (type, param.type)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue