mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-18 15:55:12 +08:00
For loop initial declarations are only allowed in C99 mode
I get an error about "for loop initial declarations are only allowed in C99 mode" with the current code. Not sure why it hasn't shown up before. I am configuring with `BUILD_SHARED_LIBS=NO ENABLE_PLUGINS=NO ENABLE_MULTIFILTERS=NO ENABLE_NCZARR_FILTERS=NO` when the error shows up using gcc-7.2.0.
This commit is contained in:
parent
94bac62446
commit
90ed6b8aa0
@ -12,7 +12,8 @@ static void
|
||||
create_dataset_a() {
|
||||
hsize_t dims[1] = {VARIABLE_SIZE};
|
||||
float data[VARIABLE_SIZE];
|
||||
for(size_t i = 0; i < VARIABLE_SIZE; ++i) {
|
||||
size_t i;
|
||||
for(i = 0; i < VARIABLE_SIZE; ++i) {
|
||||
data[i] = (float)i;
|
||||
}
|
||||
|
||||
@ -51,6 +52,7 @@ create_dataset_b() {
|
||||
|
||||
int read_back_contents(const char* filename) {
|
||||
int ncid, varid, ndims;
|
||||
size_t i;
|
||||
float data[VARIABLE_SIZE];
|
||||
|
||||
char var_name[NC_MAX_NAME+1];
|
||||
@ -63,7 +65,7 @@ int read_back_contents(const char* filename) {
|
||||
if (nc_inq_var(ncid, varid, var_name, &var_type, &ndims, dimids_var, &natts)) ERR;
|
||||
if (nc_get_var_float(ncid, varid, data)) ERR;
|
||||
printf("\t %s: ", var_name);
|
||||
for (size_t i = 0; i < VARIABLE_SIZE; ++i) {
|
||||
for (i = 0; i < VARIABLE_SIZE; ++i) {
|
||||
printf("%f, ", data[i]);
|
||||
}
|
||||
printf("\n");
|
||||
|
Loading…
Reference in New Issue
Block a user