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:
Brian Smith 2015-01-08 22:30:35 -08:00
parent 8cc66c96dd
commit 529076fb1e

View File

@ -20,8 +20,10 @@
#if defined(_MSC_VER)
#define strtoll _strtoi64
#if _MSC_VER < 1900
#define snprintf _snprintf_s
#endif
#endif
using namespace mozilla;