Skip to content

Commit

Permalink
Remove unnecessary preprocessor guard. (see boostorg#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
soroshsabz authored Aug 4, 2020
1 parent 03d20b8 commit 0b0d983
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/operations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,7 @@

# ifdef BOOST_POSIX_API
# include <sys/types.h>
# if defined(__APPLE__)
// The stat64() system calls first appeared in Mac OS X 10.5 (Leopard)
# if (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060)
# define _DARWIN_USE_64_BIT_INODE
# include <sys/stat.h>
# else
# include <sys/stat.h>
# endif
# else
# include <sys/stat.h>
# endif
# include <sys/stat.h>
# if defined(__wasm)
// WASI does not have statfs or statvfs.
# elif !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__ANDROID__) \
Expand Down

0 comments on commit 0b0d983

Please sign in to comment.