summaryrefslogtreecommitdiff
path: root/MySpace/collection.h
diff options
context:
space:
mode:
Diffstat (limited to 'MySpace/collection.h')
-rw-r--r--MySpace/collection.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/MySpace/collection.h b/MySpace/collection.h
index e02cedf..6daccfb 100644
--- a/MySpace/collection.h
+++ b/MySpace/collection.h
@@ -114,10 +114,6 @@ public:
// queue/stack functions
// stack - use push/pop
// queue - use push_back/pop
- virtual void push(T &val) {
- add_front(val);
- }
-
virtual void push(T val) {
add_front(val);
}