mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 01:49:53 +00:00
tests/(floating_point|scale_clip)_test.def : Quote hex literals.
Versions of autogen before 5.18.1 accepted bare hexadecimal literals but later versions need those hex literals quoted. See: https://sourceforge.net/p/autogen/bugs/162/
This commit is contained in:
parent
9b09b70042
commit
852d6e612a
@ -22,11 +22,11 @@ float_type = {
|
||||
|
||||
int_type = {
|
||||
int_name = short ;
|
||||
int_max = 0x7FFF ;
|
||||
int_max = "0x7FFF" ;
|
||||
} ;
|
||||
|
||||
int_type = {
|
||||
int_name = int ;
|
||||
int_max = 0x7FFFFFFF ;
|
||||
int_max = "0x7FFFFFFF" ;
|
||||
} ;
|
||||
|
||||
|
@ -19,13 +19,13 @@ float_type = {
|
||||
int_type = {
|
||||
int_type_name = "short" ;
|
||||
int_short_name = "s" ;
|
||||
int_max_value = 0x7FFFF ;
|
||||
int_max_value = "0x7FFFF" ;
|
||||
} ;
|
||||
|
||||
int_type = {
|
||||
int_type_name = "int" ;
|
||||
int_short_name = "i" ;
|
||||
int_max_value = 0x7FFFFFFF ;
|
||||
int_max_value = "0x7FFFFFFF" ;
|
||||
} ;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user