Stephen Eckels
Stephen Eckels
Hello, this flag does not seem to work in release mode. The unwind table is there by default in debug but never in release even with the force unwind tables...
Thank you for working on this
This is breaking my entire hot reload process
@raix any updates for 4.x users? I'm trying to port an ejected app back to 5 since I think you said this is fixed there, but that's slow. As it...
Switching to `vite` solved all my issues. Webpack 5 causes tons of issues with other libraries, and CRA doesn't let me stick to v4 due to this issue. `vite` uses...
Motivating example. On windows `typedef DWORD ACCESS_MASK;`. To check the flags one must do bitwise checks like `mask & GENERIC_READ` etc. This type can't be recreated with the `strong_types` as...
I did not notice the bitmask op existed thank you. Perhaps this could be added to the integer ops by default, I had expected them to be present there.
hmm doing `mask & MY_ACCESS_MASK{ GENERIC_READ }` isn't giving me a bool as I'd like. By default the bitwise mask is giving back another MY_ACCESS_MASK, an automatic bool operator would...
You need to compile dx toolkit and link the dll it generates. This repo is out of date, it will not work out of the box even if you get...
Thank you for looking into this and finding this bug! However it was already reported to me and was fixed a little while ago in the PolyHook main repository: https://github.com/stevemk14ebr/PolyHook/blob/master/PolyHook/PolyHook.hpp#L1429...