Changes in CrashLogger.cpp [9d4456b:17f28a1] in opengl-game
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CrashLogger.cpp
r9d4456b r17f28a1 5 5 #include <csignal> 6 6 #include <cstring> 7 #include <cstdint> // Check if this lets me remove any windows includes 7 8 8 9 #include <fcntl.h> … … 14 15 15 16 #ifdef WINDOWS 16 // Check if this is necessary or lets me remove any windows includes17 // also check if it's needed in Linux18 #include <cstdint>19 20 17 #include <windows.h> 21 18 #include <io.h> … … 36 33 #include <unistd.h> 37 34 #include <execinfo.h> 35 #include <errno.h> 38 36 #include <cxxabi.h> 39 40 // CHeck if these are needed in Linux 41 //#include <errno.h> 42 //#include <cstring> 37 #include <cstring> 43 38 44 39 void abortHandler(int signum);
Note:
See TracChangeset
for help on using the changeset viewer.