aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Item.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/headers/Item.hpp')
-rw-r--r--src/main/headers/Item.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/headers/Item.hpp b/src/main/headers/Item.hpp
index 56f8733..ce0c921 100644
--- a/src/main/headers/Item.hpp
+++ b/src/main/headers/Item.hpp
@@ -31,7 +31,7 @@ protected:
const std::string _name;
- Item(Type t, const std::string &name) : _name(name), type(t) {}
+ Item(Type t, const std::string &name) : type(t), _name(name) {}
};
#endif