diff options
| author | 2018-10-10 22:11:57 -0700 | |
|---|---|---|
| committer | 2018-10-10 22:11:57 -0700 | |
| commit | 35f31c697e1873a7d6ed600d6fff7932730325ea (patch) | |
| tree | 62528163e3a27aedd6393f9a58dc146f3d033ec0 | |
| parent | ec9ebec7634f9d77e9e7934ea5e5bc11c904b464 (diff) | |
Change ZipArchiveHandle from void* to ZipArchive*
Bug: none
Test: m checkbuild
Change-Id: Ia1d6e31287c6e92f1a641362738d2699204ef816
| -rw-r--r-- | libartbase/base/zip_archive.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libartbase/base/zip_archive.h b/libartbase/base/zip_archive.h index 8fc8b54d2c..d326a9e9d7 100644 --- a/libartbase/base/zip_archive.h +++ b/libartbase/base/zip_archive.h @@ -30,8 +30,9 @@ #include "unix_file/random_access_file.h" // system/core/zip_archive definitions. +struct ZipArchive; struct ZipEntry; -typedef void* ZipArchiveHandle; +typedef ZipArchive* ZipArchiveHandle; namespace art { |