Joe
Joe
the problem is that the dialyzer run command does not include otp include directories :-( So I end up with erlang_ls.config files with the otp include dirs hard coded: ```...
My tests pass locally. Something else is wrong with the build checks not related to this change
Can this be done as part of #33?
Ok will do thanks
The build failures seem to be linux setup related? ``` libhwloc.so.5: cannot open shared object file: No such file or directory ```
The `iter` module defines a set of `VectorType` type that can iterate over a slice of `T: VectorType` lifetime in `Iter::new()` I think in the name of simplicity we should...
@hollinwilkins I think we should drop the macros and switch to custom derive. This is what flatc should output: ``` #[derive(Flatbuffer, FlatBufferBuilder)] struct Weapon { name: String, damage: i16 }...
@hollinwilkins > 1. Are the macros generating some struct like this? yes > 2. Along with impls like this? yes. In addition to the structs and impls you outlined we...
> What do you think of making the base struct from which we derive this so we can reserve Weapon for the generated struct This would force the end user...
``` // Possible improvement, which would cause object // to be automatically closed on behalf of the user // // The idea here is to prevent misuse of the library...