mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Fixed missing includes in MSVC caused by the deletion of stdint.h
This commit is contained in:
parent
cb611797b3
commit
a4cd709fc7
10
src/global.h
10
src/global.h
|
@ -28,13 +28,9 @@
|
|||
* so that any file can refer to integer types with exact widths.
|
||||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#include "../include/stdint.h"
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <limits.h>
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <limits.h>
|
||||
|
||||
#if _MSC_VER && _M_AMD64
|
||||
#define X86_64
|
||||
|
|
Loading…
Reference in a new issue