jaskij

Results 173 comments of jaskij

I believe I have ran into a similar issue with `proptest!`: https://github.com/jaskij/rustfmt-proptest-confusion-repro/blob/main/src/lib.rs Strangely enough, the indentation in that file is what `rustfmt` insists on, both the one shipped with 1.82...

@ytmimi you say that, and yet `rustfmt` does mess with the indentation there. Take my repro and try changing just the indentation and formatting it. `rustmft` does restore the indentation...

Hmm... that's an option, but personally I'd prefer it to be prefix, not function, style, like this: ```c #ifndef PB_DEPRECATED #if __STDC_VERSION__ > 202311L #define PB_DEPRECATED [[deprecated]] #elif defined(__GNUC__) #define...

> What do you see as the fundamental difference in functionality of `accumulator` and `integrator`? To me, `accumulator` is just a map-reduce operation, similar to `std::transform_reduce` or the like. An...

Fast or wait? I'd wait. 0.4.9 is good as is, and if you release 1.0 with it as-is, then you're releasing it with a deadline. We'll have 1.0 now, and...

Re: speed. I think another good avenue is #1008 . A lot of the time the way this works out is one, or several, large message types with configuration, and...

@PetteriAimonen can you pin this issue to highlight the blockers for the next release?

Thanks for the info. FT_STATIC it is then.

Looking around: this is supported as an extension for all C standards since GCC 13, and clang in the 2021 timeframe. ARM GNU Toolchain 13 was released last year. I...

> I wonder if it is the -ansi that makes GCC not like it in the test case. That, and the compiler version. Best I can tell, this was added...