]> git.saurik.com Git - android/aapt.git/commit
Change ZipFile flags anonymous enum
authorKenny Root <kroot@google.com>
Mon, 25 Jul 2011 19:55:41 +0000 (12:55 -0700)
committerKenny Root <kroot@google.com>
Mon, 25 Jul 2011 23:49:17 +0000 (16:49 -0700)
commit0069ad709cb2a8e191066da5010b2d1e182eb79f
treea2eec2ea8c7b059aa60d73d6fa8dca85ea9d5f19
parentdeaaa0a632a1fccb8e09ec25b1227fc5f965c0c9
Change ZipFile flags anonymous enum

The arguments that ZipFile takes were apparently meant to be a typed
enum, but the name of the type was taken out because it creates invalid
conversion warnings in C++ since this is an invalid use of enum.

Just change the typedef enum to an anonymous enum so we get rid of the
compiler warnings. It will be implicitly converted to int instead.

Change-Id: Ie72c4c235c8f9ee8fd1b795e1010b77c55e983de
ZipFile.h