Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- What is a good way to create a string for crash reporting Win32 C that reflects the cause of the crash?
- class Error {
- //...
- public: Error(string file, string line, string error) ;
- };
- #define ERROR(err) Error(__FILE__, __LINE__, err)
Advertisement
Add Comment
Please, Sign In to add comment