diff options
author | jackpoz <giacomopoz@gmail.com> | 2015-06-28 22:55:19 +0200 |
---|---|---|
committer | DDuarte <dnpd.dd@gmail.com> | 2015-06-29 15:54:00 +0100 |
commit | 622ff39f49e0b401c6a1a95727ad73ab96faa5e4 (patch) | |
tree | 186cb83530f49b1dfca51257fcf6d0b7db31be48 /dep/g3dlite/source/FileSystem.cpp | |
parent | a48f8f4de9c0fc8251fdbb90a09be9e64fc6a19e (diff) |
Core/Dependencies: Fix some warnings in G3D
(cherry picked from commit c86cf03dcefad845ca52b1bb1c9b1baa89105462)
Diffstat (limited to 'dep/g3dlite/source/FileSystem.cpp')
-rw-r--r-- | dep/g3dlite/source/FileSystem.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dep/g3dlite/source/FileSystem.cpp b/dep/g3dlite/source/FileSystem.cpp index 32a84e77048..06e6ff00a5e 100644 --- a/dep/g3dlite/source/FileSystem.cpp +++ b/dep/g3dlite/source/FileSystem.cpp @@ -137,6 +137,9 @@ void FileSystem::Dir::computeZipListing(const std::string& zipfile, const std::s zip_close(z); z = NULL; +#else + (void)zipfile; + (void)_pathInsideZipfile; #endif } |