diff options
Diffstat (limited to 'libdex/DexFile.h')
-rw-r--r-- | libdex/DexFile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libdex/DexFile.h b/libdex/DexFile.h index 29f34c010..2ce7ebd68 100644 --- a/libdex/DexFile.h +++ b/libdex/DexFile.h @@ -70,7 +70,7 @@ enum { /* * access flags and masks; the "standard" ones are all <= 0x4000 - * + * * Note: There are related declarations in vm/oo/Object.h in the ClassFlags * enum. */ @@ -96,7 +96,7 @@ enum { ACC_CONSTRUCTOR = 0x00010000, // method (Dalvik only) ACC_DECLARED_SYNCHRONIZED = 0x00020000, // method (Dalvik only) - ACC_CLASS_MASK = + ACC_CLASS_MASK = (ACC_PUBLIC | ACC_FINAL | ACC_INTERFACE | ACC_ABSTRACT | ACC_SYNTHETIC | ACC_ANNOTATION | ACC_ENUM), ACC_INNER_CLASS_MASK = @@ -758,7 +758,7 @@ DEX_INLINE const DexTry* dexGetTries(const DexCode* pCode) { if ((((u4) insnsEnd) & 3) != 0) { insnsEnd++; } - + return (const DexTry*) insnsEnd; } @@ -795,7 +795,7 @@ typedef void (*DexDebugNewLocalCb)(void *cnxt, u2 reg, u4 startAddress, /* * Decode debug info for method. - * + * * posCb is called in ascending address order. * localCb is called in order of ascending end address. */ |