summaryrefslogtreecommitdiff
path: root/tools/aapt/StringPool.cpp
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2016-09-22 21:24:46 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-09-22 21:24:49 +0000
commitac2d839d7c8fe58696439b04d3e66382888d22dc (patch)
treebaa982d56696f366863fa1ffd4ec18a671e38320 /tools/aapt/StringPool.cpp
parentf4c8c3590a82a4f4b56c6ecb7ceb407abdbb83d8 (diff)
parent281386df645025b497950c8b4f2e87c6bf570777 (diff)
Merge "aapt: remove duplicate definition of ZD"
Diffstat (limited to 'tools/aapt/StringPool.cpp')
-rw-r--r--tools/aapt/StringPool.cpp4
1 files changed, 0 insertions, 4 deletions
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