diff options
Diffstat (limited to 'runtime/standard_dex_file.h')
| -rw-r--r-- | runtime/standard_dex_file.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/standard_dex_file.h b/runtime/standard_dex_file.h index 4fa3efe343..906b0b7b8e 100644 --- a/runtime/standard_dex_file.h +++ b/runtime/standard_dex_file.h @@ -49,8 +49,9 @@ class StandardDexFile : public DexFile { size_t size, const std::string& location, uint32_t location_checksum, - const OatDexFile* oat_dex_file) - : DexFile(base, size, location, location_checksum, oat_dex_file) {} + const OatDexFile* oat_dex_file, + DexFileContainer* container) + : DexFile(base, size, location, location_checksum, oat_dex_file, container) {} friend class DexFileLoader; friend class DexFileVerifierTest; |