1
0
Fork 0

Replace boost::enable_if/disable_if/enable_if_c/disable_if_c by std::enable_if

This commit is contained in:
gallaert 2020-04-19 12:18:33 +01:00 committed by James Turner
parent 0dfed0a096
commit c6124b5c5a
2 changed files with 5 additions and 2 deletions

View file

@ -26,6 +26,7 @@
#include <cstdio>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "FGLinuxEventInput.hxx"
extern "C" {

View file

@ -21,8 +21,10 @@
#endif
#ifdef HAVE_WINDOWS_H
#include <windows.h>
#include <direct.h>
# include <windows.h>
# include <direct.h>
#else
# include <unistd.h>
#endif
#ifdef __APPLE__