Skip to content

Commit 9365df5

Browse files
committed
EXODUS: Document some netcdf options [ci skip]
1 parent a718581 commit 9365df5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/seacas/libraries/exodus/src/ex_create.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,12 @@ int ex_create_int(const char *path, int cmode, int *comp_ws, int *io_ws, int run
163163
}
164164

165165
#if defined NC_NOATTCREORD
166-
/* Disable attribute creation order tracking if available... */
166+
/* Disable attribute creation order tracking if available (netcdf-c PR #2056) */
167167
nc_mode |= NC_NOATTCREORD;
168168
#endif
169169

170170
#if defined NC_NODIMSCALE_ATTACH
171-
/* Disable attaching dimscales to variables (netcdf-c issue #2128) if available */
171+
/* Disable attaching dimscales to variables if available (netcdf-c issue #2128) */
172172
nc_mode |= NC_NODIMSCALE_ATTACH;
173173
#endif
174174

packages/seacas/libraries/exodus/src/ex_create_par.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,14 @@ int ex_create_par_int(const char *path, int cmode, int *comp_ws, int *io_ws, MPI
179179
nc_mode = exi_handle_mode(my_mode, is_parallel, run_version);
180180

181181
#if defined NC_NOATTCREORD
182-
/* Disable attribute creation order tracking if available... */
182+
/* Disable attribute creation order tracking if available (netcdf-c PR #2056) */
183183
if (my_mode & EX_NETCDF4) {
184184
nc_mode |= NC_NOATTCREORD;
185185
}
186186
#endif
187187

188188
#if defined NC_NODIMSCALE_ATTACH
189-
/* Disable attaching dimscales to variables (netcdf-c issue #2128) if available */
189+
/* Disable attaching dimscales to variables if available (netcdf-c issue #2128) */
190190
if (my_mode & EX_NETCDF4) {
191191
nc_mode |= NC_NODIMSCALE_ATTACH;
192192
}

0 commit comments

Comments
 (0)