зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1080297 - Use native inttypes.h on VS2013. r=glandium
This commit is contained in:
Родитель
b2782ecfb8
Коммит
e103fd61cc
|
@ -33,6 +33,10 @@
|
|||
#error "Use this header only with Microsoft Visual C++ compilers!"
|
||||
#endif // _MSC_VER ]
|
||||
|
||||
#if _MSC_VER >= 1800 // [ VS2013 (VC12) provides inttypes.h
|
||||
#include <inttypes.h>
|
||||
#else // _MSC_VER >= 1800 ][
|
||||
|
||||
#ifndef _MSC_INTTYPES_H_ // [
|
||||
#define _MSC_INTTYPES_H_
|
||||
|
||||
|
@ -196,3 +200,4 @@ imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom)
|
|||
|
||||
|
||||
#endif // _MSC_INTTYPES_H_ ]
|
||||
#endif // _MSC_VER >= 1800 ]
|
||||
|
|
Загрузка…
Ссылка в новой задаче