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.
This commit is contained in:
Magnus Bjerke Vik 2015-12-03 23:21:42 +01:00
parent 00d56e06ef
commit c2ffa14684

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.