Peter Hill
Peter Hill
In my branch with everything merged, I'm down to 370 warnings from 2405 in November.
There are 11 warnings remaining in `libdap2` and they're all suspicious, for example: ```c static size_t findin(CDFnode* parent, CDFnode* child) { NClist* subnodes = parent->subnodes; for(size_t i=0;i
The CMake debug build enables: `-Wall -Wconversion`. `-Wconversion` should also enable `-Wsign-conversion`, but not `-Wsign-compare` (probably also worth enabling at some point)
@DennisHeimbigner GitHub isn't showing what you're commenting on, but if it's in reference to f8da95a, then it's due to implicit conversions: > `loaded_plugins_max` is *not* the total number of loaded...
It's not perfect, but you should be able to use `cmake_command` to do the sorts of things you want. There's also #100, but which prove fruitful if I can find...
If that plugin is changing paths so that the relative paths are wrong in your markdown files, there's probably not much we can do in this plugin. I think you...
Sounds good. Not sure I'll have much time to implement this myself for awhile, but PRs always welcome!
Thanks @johnomotani ! This is a nice proof-of-concept, but I'd quite like to keep the `identity` transform as close to a no-op as possible. What if we instead add two...
Ok, I've added `NC_HAS_HDF5_SWMR` to `netcdf_meta.h` and `--has-hdf5-swmr` to `nc-config`
The inability to watch netCDF4 files while they are being written is the main complaint I get from researchers when upgrading applications and libraries. Using SWMR removes that limitation. This...