mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1119776, Part 1: Avoid defining snprintf when MSVC provides it (dom/media), r=ehsan
--HG-- extra : rebase_source : e4ddef65c1d98f8d300560a267d6f198258315c1
This commit is contained in:
parent
8cc66c96dd
commit
529076fb1e
@ -20,8 +20,10 @@
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define strtoll _strtoi64
|
||||
#if _MSC_VER < 1900
|
||||
#define snprintf _snprintf_s
|
||||
#endif
|
||||
#endif
|
||||
|
||||
using namespace mozilla;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user