diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-11 21:39:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-11 21:39:42 +0300 |
commit | a721e4898f71a68ecb916940864599d462880e5b (patch) | |
tree | 50442e8b86707221f498ea0f304a5314a0e67430 /src/fs/physfs | |
parent | 81b97b30afa0c72e5ff17162c7d1fa88dd6187fb (diff) | |
download | manaverse-a721e4898f71a68ecb916940864599d462880e5b.tar.gz manaverse-a721e4898f71a68ecb916940864599d462880e5b.tar.bz2 manaverse-a721e4898f71a68ecb916940864599d462880e5b.tar.xz manaverse-a721e4898f71a68ecb916940864599d462880e5b.zip |
Fix different issues found by automatic checks.
Diffstat (limited to 'src/fs/physfs')
-rw-r--r-- | src/fs/physfs/virtfsphys.h | 5 | ||||
-rw-r--r-- | src/fs/physfs/virtfsphys_unittest.cc | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/physfs/virtfsphys.h b/src/fs/physfs/virtfsphys.h index 97b70aae6..1daebfb4f 100644 --- a/src/fs/physfs/virtfsphys.h +++ b/src/fs/physfs/virtfsphys.h @@ -18,10 +18,11 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifdef USE_PHYSFS #ifndef UTILS_VIRTFSPHYS_H #define UTILS_VIRTFSPHYS_H +#ifdef USE_PHYSFS + #include "enums/simpletypes/append.h" #include "localconsts.h" @@ -78,5 +79,5 @@ namespace VirtFsPhys int eof(VirtFile *restrict const file); } // namespace VirtFsPhys -#endif // UTILS_VIRTFSPHYS_H #endif // USE_PHYSFS +#endif // UTILS_VIRTFSPHYS_H diff --git a/src/fs/physfs/virtfsphys_unittest.cc b/src/fs/physfs/virtfsphys_unittest.cc index 429579b05..636d67a91 100644 --- a/src/fs/physfs/virtfsphys_unittest.cc +++ b/src/fs/physfs/virtfsphys_unittest.cc @@ -184,7 +184,6 @@ TEST_CASE("VirtFsPhys enumerateFiles2") VirtList *list = nullptr; list = VirtFsPhys::enumerateFiles("/"); - const size_t sz = list->names.size(); REQUIRE(list->names.size() == 5); VirtFsPhys::freeList(list); |