Peter Hill

Results 129 issues of Peter Hill

As part of this: - ensure `flex` and `bison` are available - run commands from top level directory so `#line` directives in generated files include the `ncgen` subdirectory -- gives...

The few remaining warnings are either not obvious what the correct type should be, or would require changing multiple function prototypes to fix, so I've left them in.

The remaining warnings basically fall into two categories: - those from `NC_ATT_INFO.len` being `int` -- changing this to `size_t` would silence a lot of warnings in one go - those...

The easy win here was changing the return type of `sbuf_len` which is used in a lot of places in this file. Two alternatives that I think would be cleaner...

I've taken the work @eivindlm started in #1448, and done the following: - merged in recent `main` and fixed conflicts - removed use of deleted macro - added `--enable-hdf5-swmr` option...

In current `main`, there is a struct which is used as a header for many other objects: ```c typedef struct NC_OBJ { NC_SORT sort; /**< Type of object. */ char*...

There's a lot of very useful information in the documentation, but it can be _very_ difficult to find. A few separate issues as examples: - There is a "Tutorial" section,...

Just a heads up in case it wasn't noticed already: generating the docs went from taking 1m30s to ~1h10m with #772 (see previous [action runs](https://github.com/fortran-lang/stdlib/actions/workflows/doc-deployment.yml)). I think this is at...

The syntax highlighting in my files randomly turns on and off, and the following error sometimes appears: ``` Error during redisplay: (jit-lock-function 22985) signaled (cl-assertion-failed (>= (cadr sgml--syntax-propertize-ppss) 0)) ```...

```cpp struct Base { /// Zero arg impl virtual int foo() { return 42; }; /// One arg impl virtual int foo(int x) { return x; }; }; struct Derived...