Changeset 9d4456b in opengl-game


Ignore:
Timestamp:
Jun 21, 2019, 1:53:08 PM (5 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
03f4c64
Parents:
17f28a1
Message:

Verify #includes in CrashLogger.cpp on OSX

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CrashLogger.cpp

    r17f28a1 r9d4456b  
    55#include <csignal>
    66#include <cstring>
    7 #include <cstdint> // Check if this lets me remove any windows includes
    87
    98#include <fcntl.h>
     
    1514
    1615#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
    1720   #include <windows.h>
    1821   #include <io.h>
     
    3336   #include <unistd.h>
    3437   #include <execinfo.h>
    35    #include <errno.h>
    3638   #include <cxxabi.h>
    37    #include <cstring>
     39
     40   // CHeck if these are needed in Linux
     41   //#include <errno.h>
     42   //#include <cstring>
    3843
    3944   void abortHandler(int signum);
Note: See TracChangeset for help on using the changeset viewer.