diff options
author | jackpoz <giacomopoz@gmail.com> | 2015-06-28 22:55:19 +0200 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2015-06-28 22:55:19 +0200 |
commit | c86cf03dcefad845ca52b1bb1c9b1baa89105462 (patch) | |
tree | 08db3fab3f3d4d359d6ae15e622685f5162ef639 /dep/g3dlite/source/fileutils.cpp | |
parent | 80761849cc3a40bd51b16a60fc0bb0f9052faa9e (diff) |
Core/Dependencies: Fix some warnings in G3D
Diffstat (limited to 'dep/g3dlite/source/fileutils.cpp')
-rw-r--r-- | dep/g3dlite/source/fileutils.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dep/g3dlite/source/fileutils.cpp b/dep/g3dlite/source/fileutils.cpp index 966cca7d4bf..2788adad3bc 100644 --- a/dep/g3dlite/source/fileutils.cpp +++ b/dep/g3dlite/source/fileutils.cpp @@ -396,6 +396,10 @@ bool zipfileExists(const std::string& filename, std::string& outZipfile, } } +#else + (void)filename; + (void)outZipfile; + (void)outInternalFile; #endif // not a valid directory structure ever, // obviously no .zip was found within the path @@ -756,6 +760,12 @@ static void getFileOrDirListZip(const std::string& path, zip_close( z ); fileSet.getMembers(files); +#else + (void)path; + (void)prefix; + (void)files; + (void)wantFiles; + (void)includePath; #endif } |