Merge "Add virtual dtor for virtual classes"

This commit is contained in:
TreeHugger Robot
2018-01-11 10:31:24 +00:00
committed by Android (Google) Code Review

View File

@@ -42,6 +42,8 @@ enum ApkFormat {
// Info about an APK loaded in memory.
class LoadedApk {
public:
virtual ~LoadedApk() = default;
// Loads both binary and proto APKs from disk.
static std::unique_ptr<LoadedApk> LoadApkFromPath(const ::android::StringPiece& path,
IDiagnostics* diag);