From c197b12d21ef0dad740d76e74e2e6910ead629b0 Mon Sep 17 00:00:00 2001 From: "leozwang@webrtc.org" Date: Mon, 12 Mar 2012 16:52:28 +0000 Subject: [PATCH] Typedef WebRtc_word8 to int8_t BUG=311 TEST=build on all platforms Review URL: https://webrtc-codereview.appspot.com/446002 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1877 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/typedefs.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/typedefs.h b/src/typedefs.h index f9055d9d1..53db408c8 100644 --- a/src/typedefs.h +++ b/src/typedefs.h @@ -72,9 +72,7 @@ typedef unsigned __int64 uint64_t; // TODO(andrew): remove WebRtc_ types: // http://code.google.com/p/webrtc/issues/detail?id=314 -// TODO(leozwang): change to WebRtc_Word8 to use int8_t: -// http://code.google.com/p/webrtc/issues/detail?id=311 -typedef char WebRtc_Word8; +typedef int8_t WebRtc_Word8; typedef int16_t WebRtc_Word16; typedef int32_t WebRtc_Word32; typedef int64_t WebRtc_Word64;