mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
38bf48d2ca
Re: esupport ticket support-netcdf : SKS-534087 Ncgen treats an integer with just a U/u suffix as uint64 instead of uint32. Fix is in ncgen.l
10 lines
129 B
Plaintext
10 lines
129 B
Plaintext
netcdf tst_usuffix {
|
|
variables:
|
|
float att_var ;
|
|
att_var:uint_att = 73U ;
|
|
att_var:uint_att2 = 73U ;
|
|
data:
|
|
|
|
att_var = 10 ;
|
|
}
|