Mathias Stearn
Mathias Stearn
(note: I know nothing about clangd's internals so this comment is based on guesses based on observable behavior. Hopefully it isn't complete nonsense and if needed someone can translate into...
>> the project may be so large that we cannot enumerate the modules, let alone touch every file. > > So now I feel it is impossible to support modules...
FYI, I ran into this while comparing codegen between gcc and clang on godbolt, where cppcoro is an easy way to quickly play with coroutines. When doing this I couldn't...
Nice. I hadn't noticed because in the function that made me file this, the `for` was off the screen. I suspect that this feature will be most useful for those...
PPC is pushing PPC64LE as the way forward now that they've seen the error in their big-endian ways. As for eNative, I think the right solution is something like: ```nim...
Sorry for the delay in writing back. My team owns this code and we have been debating internally what to do with this PR. On the one hand, we appreciate...
I'm going to go ahead and close this. I'd rather we not merge non-trivial code that we don't have any ability to test in an ongoing manner in CI.
I would go with a very simple rule: All bytes =0x7f get escaped, as well as `\` and `"`. It is probably worth using `\n`, `\r` and `\t` escapes, but...
For reference [this](https://github.com/google/googletest/blob/e9092b12dc3cf617d47578f13a1f64285cfa5b2f/googletest/src/gtest-printers.cc#L145-L211) is the implementation used by gtest, as called from [`PrintCharsAsStringTo`](https://github.com/google/googletest/blob/e9092b12dc3cf617d47578f13a1f64285cfa5b2f/googletest/src/gtest-printers.cc#L334-L363), which is called from several places. One interesting thing is that for cstrings, it [prints](https://github.com/google/googletest/blob/e9092b12dc3cf617d47578f13a1f64285cfa5b2f/googletest/src/gtest-printers.cc#L426-L435) both the...
Oh, I don't think `to_string()` should be affected by `FORCE_COLOR`. My thought was that it would only affect `print()` (and similar) when the color mode is automatic, and either the...