Fix POSIX build

This commit is contained in:
Carter Li 2015-02-16 12:35:47 +08:00
parent 284687d8f7
commit 06eb3c107b

View File

@ -44,9 +44,9 @@
#ifndef FMT_POSIX #ifndef FMT_POSIX
# ifdef _WIN32 # ifdef _WIN32
// Fix warnings about deprecated symbols. // Fix warnings about deprecated symbols.
# define FMT_POSIX(call) _##call # define FMT_POSIX(symbol) _##symbol
# else # else
# define FMT_POSIX(call) ::call # define FMT_POSIX(symbol) symbol
# endif # endif
#endif #endif