fungos / cr

cr.h: A Simple C Hot Reload Header-only Library
https://fungos.github.io/cr-simple-c-hot-reload/
MIT License
1.55k stars 104 forks source link

C++ support #3

Closed Pombal closed 6 years ago

Pombal commented 6 years ago

If the DLL is written in C++ without exception handling or RTTI, would it work? If not, what would need to implemented? Also, any plans on adding C++ support in the future? Thanks!

fungos commented 6 years ago

C++ is tricky, but it works if you consider some things:

Simple put: it works but you need to know C++ very well to see the traps everywhere. Otherwise, I'd recommend RCC++ for complex C++ projects.

Pombal commented 6 years ago

Thank you for the quick reply, I understand the limitations :)