Joel de Guzman
Joel de Guzman
These are all safe to ignore. But if you care, feel free to prepare a PR with warning suppression : #pragma warning(push) #pragma warning(disable : XXXX) // Replace XXXX with...
> Are you sure about using suppressions? Yes. Compilers tend to be too patronizing at times. This falls under the category of _we know what we're doing_ :-) Love to...
> > Are you sure about using suppressions? > > Yes. Compilers tend to be too patronizing at times. This falls under the category of _we know what we're doing_...
> warning: missing initializer for member 'cycfi::elements::{anonymous}::view_info::_scroll_dir' [-Wmissing-field-initializers] > 534 | view_info* info = new view_info{_this}; Ah this better needs to be fixed. Sorry for the noise haha :-)
> So this library requires attribution in binaries? The [MIT](https://github.com/cycfi/q?tab=MIT-1-ov-file#readme) license does not require that, does it?
P.S. Nice to see you here, @vinniefalco :-)
> > The [MIT](https://github.com/cycfi/q?tab=MIT-1-ov-file#readme) license does not require that, does it? > > It does: https://pdimov.github.io/blog/2020/09/06/why-use-the-boost-license/ > > I was doing some DSP work many years ago so I found...
Correct me if my understanding is wrong, but I think one difference between 'hold' and the alternative solutions is that with 'hold' you only pay for it when you use...
> I wonder if there is a way to shift the annotation (such as hold) out of the grammar and into the attribute where it belongs. Like a wrapper for...
> I've almost never used hold. Me too. Whatever the solution is, we should not pay for something that we do not use.