From 70a5e0ead620db27905143733efbcfcdb86bcf74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Bostr=C3=B6m?= Date: Wed, 7 Oct 2015 13:19:39 +0200 Subject: [PATCH] Remove (u)int typedefs from basictypes.h. BUG=webrtc:5024 R=henrikg@webrtc.org Review URL: https://codereview.webrtc.org/1387413002 . Cr-Commit-Position: refs/heads/master@{#10197} --- webrtc/base/basictypes.h | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/webrtc/base/basictypes.h b/webrtc/base/basictypes.h index cddde9c04a..4c3d5d1e51 100644 --- a/webrtc/base/basictypes.h +++ b/webrtc/base/basictypes.h @@ -12,22 +12,12 @@ #define WEBRTC_BASE_BASICTYPES_H_ #include // for NULL, size_t -#include // for uintptr_t +#include // for uintptr_t and (u)int_t types. #ifdef HAVE_CONFIG_H #include "config.h" // NOLINT #endif -// TODO(grunell): Use (u)intxx_t everywhere instead and remove these typedefs. -typedef int8_t int8; -typedef uint8_t uint8; -typedef int16_t int16; -typedef uint16_t uint16; -typedef int32_t int32; -typedef uint32_t uint32; -typedef int64_t int64; -typedef uint64_t uint64; - // Detect compiler is for x86 or x64. #if defined(__x86_64__) || defined(_M_X64) || \ defined(__i386__) || defined(_M_IX86)