From 281386df645025b497950c8b4f2e87c6bf570777 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Fri, 16 Sep 2016 12:55:35 -0700 Subject: aapt: remove duplicate definition of ZD ZD and ZD_TYPE are set by utils/Compat.h, remove them from StringPool.cpp and Resource.cpp. Test: m -j native Bug: 31492149 Change-Id: I6154e4598dd1f279e348ef6c0b32d756464bda8a --- tools/aapt/StringPool.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tools/aapt/StringPool.cpp') diff --git a/tools/aapt/StringPool.cpp b/tools/aapt/StringPool.cpp index 37a493329ade..866291a3b678 100644 --- a/tools/aapt/StringPool.cpp +++ b/tools/aapt/StringPool.cpp @@ -14,12 +14,8 @@ // SSIZE: mingw does not have signed size_t == ssize_t. #if !defined(_WIN32) -# define ZD "%zd" -# define ZD_TYPE ssize_t # define SSIZE(x) x #else -# define ZD "%ld" -# define ZD_TYPE long # define SSIZE(x) (signed size_t)x #endif -- cgit v1.2.3-59-g8ed1b