Chromium Code Reviews| Index: webrtc/typedefs.h |
| diff --git a/webrtc/typedefs.h b/webrtc/typedefs.h |
| index 3034c7e74ae9fcc005a08884722d12b434405e42..d8754908bd215dd42a3114999111935c5d2640e6 100644 |
| --- a/webrtc/typedefs.h |
| +++ b/webrtc/typedefs.h |
| @@ -62,19 +62,8 @@ |
| #define WEBRTC_CPU_DETECTION |
| #endif |
| -#if !defined(_MSC_VER) |
| +// TODO(pbos): Use webrtc/base/basictypes.h instead to include fixed-size ints. |
| #include <stdint.h> |
| -#else |
| -// Define C99 equivalent types, since pre-2010 MSVC doesn't provide stdint.h. |
|
tlegrand-webrtc
2015/10/05 13:49:01
What happens if defined _MSC_VER?
pbos-webrtc
2015/10/06 09:14:59
It's fine, we include stdint.h from many other pla
|
| -typedef signed char int8_t; |
| -typedef signed short int16_t; |
| -typedef signed int int32_t; |
| -typedef __int64 int64_t; |
| -typedef unsigned char uint8_t; |
| -typedef unsigned short uint16_t; |
| -typedef unsigned int uint32_t; |
| -typedef unsigned __int64 uint64_t; |
| -#endif |
| // Annotate a function indicating the caller must examine the return value. |
| // Use like: |