diff options
Diffstat (limited to 'runtime/cdex/compact_dex_file.h')
| -rw-r--r-- | runtime/cdex/compact_dex_file.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/cdex/compact_dex_file.h b/runtime/cdex/compact_dex_file.h index 910473be3f..3c1b638f03 100644 --- a/runtime/cdex/compact_dex_file.h +++ b/runtime/cdex/compact_dex_file.h @@ -51,8 +51,9 @@ class CompactDexFile : 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 DexFile; friend class DexFileLoader; |