diff options
author | Josiah Gaskin <josiahgaskin@google.com> | 2011-07-20 17:33:08 -0700 |
---|---|---|
committer | Josiah Gaskin <josiahgaskin@google.com> | 2011-07-20 18:22:26 -0700 |
commit | 9102165fd8be64bdc9110d0839a84fcdfa5b68cb (patch) | |
tree | 3c9f6a6449ee315a165192ff8f8b9d2280809bc9 /tools/aapt/FileFinder.h | |
parent | 0bc12a0b13719976aff95a801d88e48c64510d11 (diff) |
Fix to compile for windows
This change includes a workaround for dirent.h on windows not
including d_type.
Change-Id: Ieaa3f298d2e6b32f2d8367384a1d02a2f5d06cca
Diffstat (limited to 'tools/aapt/FileFinder.h')
-rw-r--r-- | tools/aapt/FileFinder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/aapt/FileFinder.h b/tools/aapt/FileFinder.h index 3f87aba0a084..6974aee033a8 100644 --- a/tools/aapt/FileFinder.h +++ b/tools/aapt/FileFinder.h @@ -25,6 +25,8 @@ public: virtual bool findFiles(String8 basePath, Vector<String8>& extensions, KeyedVector<String8,time_t>& fileStore, DirectoryWalker* dw) = 0; + + virtual ~FileFinder() {}; }; class SystemFileFinder : public FileFinder { |