diff options
Diffstat (limited to 'runtime/dex_file.h')
-rw-r--r-- | runtime/dex_file.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/dex_file.h b/runtime/dex_file.h index eb3b210cd1..990ab118e7 100644 --- a/runtime/dex_file.h +++ b/runtime/dex_file.h @@ -62,11 +62,11 @@ class DexFile { static const uint16_t kDexNoIndex16 = 0xFFFF; // The separator character in MultiDex locations. - static constexpr char kMultiDexSeparator = ':'; + static constexpr char kMultiDexSeparator = '!'; // A string version of the previous. This is a define so that we can merge string literals in the // preprocessor. - #define kMultiDexSeparatorString ":" + #define kMultiDexSeparatorString "!" // Raw header_item. struct Header { @@ -499,7 +499,7 @@ class DexFile { return GetBaseLocation(location.c_str()); } - // Returns the ':classes*.dex' part of the dex location. Returns an empty + // Returns the '!classes*.dex' part of the dex location. Returns an empty // string if there is no multidex suffix for the given location. // The kMultiDexSeparator is included in the returned suffix. static std::string GetMultiDexSuffix(const std::string& location) { |