netcdf-c/ncgen/tst_usuffix.cdl
Dennis Heimbigner 38bf48d2ca re: gihub issue https://github.com/Unidata/netcdf-c/issues/380
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
2017-03-24 18:56:14 -06:00

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 ;
}