diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-12 20:26:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-12 20:26:59 +0300 |
commit | bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43 (patch) | |
tree | 4d631106f76ba8a052dc2ef8b23b8a968040db82 /src/resources/inventory/inventory.h | |
parent | 67638eeec5267977940dce29c5a94ce4d093ed69 (diff) | |
download | mv-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.gz mv-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.bz2 mv-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.tar.xz mv-bebb71a3dfadb2b94ba46c0c66f0d40d6ef75e43.zip |
Add noexcept in some files.
Diffstat (limited to 'src/resources/inventory/inventory.h')
-rw-r--r-- | src/resources/inventory/inventory.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/inventory/inventory.h b/src/resources/inventory/inventory.h index 8d1e0c076..473284c09 100644 --- a/src/resources/inventory/inventory.h +++ b/src/resources/inventory/inventory.h @@ -70,7 +70,7 @@ class Inventory notfinal /** * Returns the size that this instance is configured for. */ - unsigned getSize() const A_WARN_UNUSED + unsigned getSize() const noexcept2 A_WARN_UNUSED { return mSize; } /** @@ -152,7 +152,7 @@ class Inventory notfinal /** * Get the number of slots filled with an item */ - int getNumberOfSlotsUsed() const A_WARN_UNUSED + int getNumberOfSlotsUsed() const noexcept2 A_WARN_UNUSED { return mUsed; } /** @@ -164,10 +164,10 @@ class Inventory notfinal void removeInventoyListener(InventoryListener *const listener); - InventoryTypeT getType() const A_WARN_UNUSED + InventoryTypeT getType() const noexcept2 A_WARN_UNUSED { return mType; } - bool isMainInventory() const A_WARN_UNUSED + bool isMainInventory() const noexcept2 A_WARN_UNUSED { return mType == InventoryType::Inventory; } const Item *findItemBySprite(std::string spritePath, |