Changes in CrashLogger.cpp [9d4456b:17f28a1] in opengl-game


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • CrashLogger.cpp

    r9d4456b r17f28a1  
    55#include <csignal>
    66#include <cstring>
     7#include <cstdint> // Check if this lets me remove any windows includes
    78
    89#include <fcntl.h>
     
    1415
    1516#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 
    2017   #include <windows.h>
    2118   #include <io.h>
     
    3633   #include <unistd.h>
    3734   #include <execinfo.h>
     35   #include <errno.h>
    3836   #include <cxxabi.h>
    39 
    40    // CHeck if these are needed in Linux
    41    //#include <errno.h>
    42    //#include <cstring>
     37   #include <cstring>
    4338
    4439   void abortHandler(int signum);
Note: See TracChangeset for help on using the changeset viewer.