mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
ac421620b3
re: https://github.com/Unidata/netcdf-c/issues/1977 PR https://github.com/Unidata/netcdf-c/pull/1753, changed ncgen to allows certain type names to be used as identifiers in selected situations. An unwanted side effect was that existing type aliases no longer were accepted by ncgen. Specifically, using the "long" type caused an error. I was able to figure out a better solution to the original problem (https://github.com/Unidata/netcdf-c/issues/1750) that also fixes this problem as well. This PR fixes that problem in ncgen/ncgen.l, and adds tests to ncdump/test_keywords.sh
10 lines
122 B
Plaintext
10 lines
122 B
Plaintext
netcdf x {
|
|
dimensions:
|
|
string = 17;
|
|
variables:
|
|
int string;
|
|
int string:x = 17;
|
|
int :string = 17;
|
|
data: string = 1;
|
|
}
|