summaryrefslogtreecommitdiff
path: root/I_anno/Programmazione_2/data_structures/stack.cc
diff options
context:
space:
mode:
Diffstat (limited to 'I_anno/Programmazione_2/data_structures/stack.cc')
-rw-r--r--I_anno/Programmazione_2/data_structures/stack.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/I_anno/Programmazione_2/data_structures/stack.cc b/I_anno/Programmazione_2/data_structures/stack.cc
index f1cc7d1..ffff780 100644
--- a/I_anno/Programmazione_2/data_structures/stack.cc
+++ b/I_anno/Programmazione_2/data_structures/stack.cc
@@ -34,12 +34,11 @@ public:
node<T>* pop() {
if(!_head) return nullptr;
-
- auto old_head = _head;
+ node<T>* elem = _head;
delete _head;
- _head = _head->next;
+ _head = elem->next;
- return old_head;
+ return elem;
}
void print() {