Changeset 754cf5a in opengl-game for CrashLogger.cpp
- Timestamp:
- Jun 30, 2019, 8:10:49 PM (6 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- a8c958b
- Parents:
- 972aca1 (diff), 71876b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CrashLogger.cpp
r972aca1 r754cf5a 5 5 #include <csignal> 6 6 #include <cstring> 7 #include <cstdint> // Check if this lets me remove any windows includes8 7 9 8 #include <fcntl.h> … … 15 14 16 15 #ifdef WINDOWS 16 // Check if this is necessary or lets me remove any windows includes 17 // also check if it's needed in Linux 18 #include <cstdint> 19 17 20 #include <windows.h> 18 21 #include <io.h> … … 33 36 #include <unistd.h> 34 37 #include <execinfo.h> 35 #include <errno.h>36 38 #include <cxxabi.h> 37 #include <cstring> 39 40 // CHeck if these are needed in Linux 41 //#include <errno.h> 42 //#include <cstring> 38 43 39 44 void abortHandler(int signum);
Note:
See TracChangeset
for help on using the changeset viewer.