summaryrefslogtreecommitdiff
path: root/src/equipment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/equipment.h')
-rw-r--r--src/equipment.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/equipment.h b/src/equipment.h
index d0aa8a785..c814e802f 100644
--- a/src/equipment.h
+++ b/src/equipment.h
@@ -67,7 +67,7 @@ class Equipment
class Backend
{
public:
- virtual Item *getEquipment(int index) const = 0;
+ virtual Item *getEquipment(int index) const A_WARN_UNUSED = 0;
virtual void clear() = 0;
@@ -78,7 +78,7 @@ class Equipment
/**
* Get equipment at the given slot.
*/
- Item *getEquipment(const int index) const
+ Item *getEquipment(const int index) const A_WARN_UNUSED
{ return mBackend ? mBackend->getEquipment(index) : nullptr; }
/**
@@ -95,7 +95,7 @@ class Equipment
void setBackend(Backend *const backend)
{ mBackend = backend; }
- const Backend *getBackend() const
+ const Backend *getBackend() const A_WARN_UNUSED
{ return mBackend; }
private: