summaryrefslogtreecommitdiffstats
path: root/dexdump
diff options
context:
space:
mode:
authorCarl Shapiro <cshapiro@google.com>2011-04-27 23:00:01 -0700
committerCarl Shapiro <cshapiro@google.com>2011-04-27 23:00:01 -0700
commitd862faa2ceae186da5518607505eb942d634ced9 (patch)
tree3854638a1851457b5f895fc6c39fa032fd90c6f9 /dexdump
parent5cdd4a3f91d3fc25c8eeca8f58e35bb6c4e908ca (diff)
downloadandroid_dalvik-d862faa2ceae186da5518607505eb942d634ced9.tar.gz
android_dalvik-d862faa2ceae186da5518607505eb942d634ced9.tar.bz2
android_dalvik-d862faa2ceae186da5518607505eb942d634ced9.zip
Get rid of uneeded extern, enum, typedef and struct qualifiers.
Change-Id: I236c5a1553a51f82c9bc3eaaab042046c854d3b4
Diffstat (limited to 'dexdump')
-rw-r--r--dexdump/DexDump.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dexdump/DexDump.cpp b/dexdump/DexDump.cpp
index 7d1175281..59f149ba7 100644
--- a/dexdump/DexDump.cpp
+++ b/dexdump/DexDump.cpp
@@ -241,10 +241,10 @@ static int countOnes(u4 val)
/*
* Flag for use with createAccessFlagStr().
*/
-typedef enum AccessFor {
+enum AccessFor {
kAccessForClass = 0, kAccessForMethod = 1, kAccessForField = 2,
kAccessForMAX
-} AccessFor;
+};
/*
* Create a new string with human-readable access flags.