Emile Cormier

Results 281 comments of Emile Cormier

> GitHub stars and forks are what give my life meaning and value @vinniefalco, I'm working on a serialization library intended to be used in conjunction with Asio and your...

Let's keep the discussion civil. > that is not zero-overhead tbh. On Microsoft ABI, even empty objects would waste registers If the code is all inline, wouldn't the compiler optimize...

Then just add the `inline` that I forgot.

@vinniefalco He got kicked out of the Reddit C++ subforum, as well as the Ryu Github repo. Not hard to imagine why.

You don't pay the author either. We're simply making a feature request and presented some evidence on the number of C++11 users. I'm trying to stay civil here, but you...

> I know people are hating me because I am speaking the sad truth. There are ways of arguing what you believe is the truth without coming off as a...

@jk-jeon Thanks for the information. I was unaware of abolz' implementation. It looks like it's just what I need with Javascript-like behavior for use with JSON.

Going back to the use of `if constexpr` statements... If the condition is a known constant at compile-time, all decent compilers will optimize-out the branch never taken. Instead of `if...

C++ language standards adoption from the [jetbrains report done in 2021](https://blog.jetbrains.com/clion/2021/07/cpp-ecosystem-in-2021/): ![C++ language standards adoption](https://blog.jetbrains.com/wp-content/uploads/2021/07/standards.png)

> Has anyone come up with a decent workaround? I've resorted to changing my logging to output via straight `cout` to help with debugging. Perhaps a producer-consume queue where log...