David LeBlanc
David LeBlanc
If you started with dotnet add, that will make the csproj file for you. If I could then sort out how to get cmake to do something which would then...
Please send code as a pull request. There's not a lot that isn't either named with some variant of safeint, or is otherwise unlikely to collide. The code has been...
Hi Dylan, Apologies for the delay. This is related to https://github.com/dcleblanc/SafeInt/pull/50. I thought there was an issue covering this regression but can't find it. I think that if you simply...
Looks like gcc 13 doesn't support anything below C++11. I'm working on getting gcc 13 on my test system so that I can correctly check for gcc version and enable/disable...
Please try the change in In particular, try changing the compiler version test from GREATER_EQUAL "13" to "13.2" - I haven't so far managed to install 13.2, and I don't...
I don't think you have the latest header, which shouldn't matter - this hasn't been changed in years. I don't understand how static inline void SafeIntExceptionAssert() SAFEINT_NOTHROW {} Could possibly...
I believe that's incorrect, they're local to the file they're included in. Having something be static inline means you could have the function defined more than once. Also, I do...
Yes, that's fine, but if I'm going to fix something, then I need to be able to reproduce it so that I can add whatever it is to the CMake...
I meant with this header. Also, that function only ever gets called in 4 places inside the header, and never on its own, so your repro isn't accurate. Out of...
BTW, I thought your use of std:c++latest might be a clue, added a project with that, builds clean.