Peter Hill
Peter Hill
Hi Jules, my initial guess is that this is something to do with checking out the code -- Ford can't find some files that are maybe in an external library...
This is actually a bug, the paths in the settings file are supposed to be relative to the setting file, but (at least) the exclude paths get processed relative to...
> A query @ZedThree: assuming this all works, what is the "right" way to exclude a specific filename in one subdir but not another? Is it: The benefit of the...
I also added this in [4a2c6ce](https://github.com/Unidata/netcdf-cxx4/pull/143/commits/4a2c6ce9201875db940c71589941a7c63292aefa) in #143, although I set it to C++14. I would *strongly* encourage setting the minimum to C++14 rather than 11. 14 is really a...
Did you see #139? It adds some basic CI On Tue, 23 Jan 2024, 19:36 Ward Fisher, ***@***.***> wrote: > Reviewing the CXX PR's, I have some work to do...
These are both unused private members and could be deleted entirely. `NcType::g_fileId` looks like it was replaced by a global variable, `g_ncid`, to work round some issue -- I think...
I think `netcdfcpp.h` is the "legacy" C++ API, you want something like https://packages.ubuntu.com/impish/libnetcdf-cxx-legacy-dev Or to update your code to use the new API
I think this is because the test hardcodes the use of the BZIP2 filter, which might not be available. If it just used the deflate filter, that should always be...
You can use [`std::vector::data`](https://en.cppreference.com/w/cpp/container/vector/data) to get a pointer to the underlying storage: ```cpp // Create a vector of type T with the appropriate size reserved. std::vector value(dims[0].getSize()); // Assuming `var`...
`NcVar::getVar` has [an overload set](https://docs.unidata.ucar.edu/netcdf-cxx/current/classnetCDF_1_1NcVar.html#af4383f040391e8603c8ad11f7077191d) that takes `start` and `count` vectors which you can use to pull out some N-D chunk from the file. The version I showed does indeed...