Replace boost::enable_if/disable_if/enable_if_c/disable_if_c by std::enable_if
This commit is contained in:
parent
0dfed0a096
commit
c6124b5c5a
2 changed files with 5 additions and 2 deletions
|
@ -26,6 +26,7 @@
|
|||
#include <cstdio>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include "FGLinuxEventInput.hxx"
|
||||
|
||||
extern "C" {
|
||||
|
|
|
@ -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__
|
||||
|
|
Loading…
Add table
Reference in a new issue