Tanner Gooding
Tanner Gooding
You've defined `PHNT_MODE` with no value, so it compiles down to `#if ( != 0)` You need to either not do `--define-macro` because it's automatically included in the file, or...
You can reproduce this in isolation on godbolt using something like: ```cpp #define PHNT_MODE #define PHNT_MODE_KERNEL #define PHNT_MODE_KERNEL 0 #ifndef PHNT_MODE #define PHNT_MODE 1 #endif #if (PHNT_MODE != PHNT_MODE_KERNEL) //...
In general binding against C++ is error prone and undesirable due to having an unstable ABI and no standard for exports across platforms/architectures. Its typically recommended to have a C...
There is no dump and the only hint as to why the SIGKILL might have been raised is > dmesg: read kernel buffer failed: Operation not permitted This seems like...
@lewing was it intentional this was closed? We're still seeing the timeout in the branding updates: https://github.com/dotnet/runtime/pull/119279
Yes, there has just been limited time and availability in the recent months and I have prioritized the library that is more widely used, particularly by several large scale projects....
The `expected` here is what's incorrect. The infinitely precise answer is exactly `420483543694507964.38225433`, which is what's listed as the actual result. Probably needs more investigation
`ToString()` in .NET Framework did not guarantee roundtripping, it was basically equivalent to `G15`. `ToString("R")` was more expensive because it first did `G15`, then parsed the result and compared to...
> With that in mind, say I wanted to write code "once" that depends on round-trip functionality. From an API perspective, which format guarantees me that functionality for all future...
I don't believe there's explicit plans to update, but there's also no reason to keep it as is and contributions are welcome. It really would just need a callout of...