summaryrefslogtreecommitdiffstats
path: root/raul/List.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/List.hpp')
-rw-r--r--raul/List.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/List.hpp b/raul/List.hpp
index 8edbc02..39f3af4 100644
--- a/raul/List.hpp
+++ b/raul/List.hpp
@@ -47,7 +47,7 @@ public:
*/
class Node : public Raul::Deletable {
public:
- explicit Node(T elem) : _elem(elem) {}
+ explicit Node(T e) : _elem(e) {}
virtual ~Node() {}
template <typename Y>