diff options
author | SmallJoker <SmallJoker@users.noreply.github.com> | 2021-10-12 20:12:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 20:12:20 +0200 |
commit | ecc6f4ba25cd49599922333a5f8d4b4ce368992d (patch) | |
tree | 9e54d0968bde5faf2f1870c5c806fa30521a695d /src/inventory.cpp | |
parent | 6de8d77e17017cd5cc7b065d42566b6b1cd076cc (diff) | |
download | minetest-ecc6f4ba25cd49599922333a5f8d4b4ce368992d.tar.gz minetest-ecc6f4ba25cd49599922333a5f8d4b4ce368992d.tar.bz2 minetest-ecc6f4ba25cd49599922333a5f8d4b4ce368992d.zip |
Remove a few unused functions reported by callcatcher (#11658)
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 029fcbf4f..d14b12f9d 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -560,11 +560,6 @@ u32 InventoryList::getUsedSlots() const return num; } -u32 InventoryList::getFreeSlots() const -{ - return getSize() - getUsedSlots(); -} - const ItemStack& InventoryList::getItem(u32 i) const { assert(i < m_size); // Pre-condition |