Fix fileno causing compile error when #defined

Error:
expected unqualified-id before '(' token
 int fmt::BufferedFile::fileno() const {

This is an issue with Android NDK and mingw32.

c2ffa14684
This commit is contained in:
vitaut
2016-03-10 07:16:48 -08:00
parent 368b66a806
commit 8c68e2ca04
2 changed files with 5 additions and 2 deletions

View File

@ -55,11 +55,14 @@
# ifdef __MINGW32__
# define _SH_DENYNO 0x40
# undef fileno
# endif
#endif // _WIN32
#ifdef fileno
# undef fileno
#endif
namespace {
#ifdef _WIN32
// Return type of read and write functions.

View File

@ -31,7 +31,7 @@
#include "posix.h"
#include "util.h"
#ifdef __MINGW32__
#ifdef fileno
# undef fileno
#endif