Quinton Miller

Results 253 comments of Quinton Miller

how will this behave when combined with Axy / 7xy?

absolute pitch sequences shall be implemented independently of the official beta

hold off until 0.5.0 which presumably uses a newer compiler and supports enum classes

deferred until 0.5.0 stable is released

Nothing special in mind, I have been ensuring that qt5.cr works on 1.0.0-dev. Personally I'd continue work on template types support but that does not have to align with Crystal...

About `struct CrystalSlice`: When I tried to attach the element type to it as a template parameter, I got errors like this: ``` instance_properties.cpp:57:30: error: 'bg_Props_v_GETTER_' has C-linkage specified, but...

Putting this PR on hiatus because there is one major problem: slices can only refer to binding types even when the element type is wrapped. For example: ```cpp struct Inner...

That's it for now, Bindgen will currently reject arrays that are not built-in types (more specifically getter methods are omitted, and `lib struct`s containing them are reported by SanityCheck).

Looks like builds now fail with ``` clang: error: -Wl,-fuse-ld=gold: 'linker' input unused [-Werror,-Wunused-command-line-argument] ``` The culprit may be https://github.com/Papierkorb/bindgen/blob/3f028833f059e70b89cfa03b0686e145b70921b1/clang/find_clang.cr#L60-L63 It should be okay to drop linker flags here (`-Wl,*`)...

Understandable. That said, the breaking change only happens when passing containers to the wrapper; the wrapper should be free to return containers directly, i.e. ```crystal class Pen # before def...