aboutsummaryrefslogtreecommitdiff
path: root/backend/List.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-30 16:34:29 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-30 16:34:29 +0100
commit71380426426dffe787d1704a8fd639c4b1bbfad3 (patch)
treef550cc1dfa100e208712e20b4442687cc2a7f157 /backend/List.h
parenta3c1ba7b49e4c5901d7c9dd917049744ad20fc96 (diff)
cmd_get complete
Diffstat (limited to 'backend/List.h')
-rw-r--r--backend/List.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/List.h b/backend/List.h
index 2d3d6b1..1d8893e 100644
--- a/backend/List.h
+++ b/backend/List.h
@@ -20,7 +20,8 @@ class List {
public:
size_t size();
- void push_back(T el);
+ void push_back(T & el);
+ void remove(const T & val);
void pop_back();