I am coding Qt C++ app and suddenly Fault Tolerant Heap appears. Everything works fine but after run of app its writes to console:
FTH: (some_number): *** Fault tolerant heap shim applied to current process. This is usually due to previous crashes. ***
I read little bit about it and it looks like its helping to avoid crashes. But my application will not be use only on my computer. I need to use it on more computers. Will this Fault Tolerant Heap be applied on app on any computer ? Is there any disadvantage to keep it enable during coding ? Should I disable it ?
Thank you for any help.