summaryrefslogtreecommitdiff
path: root/goo
diff options
context:
space:
mode:
authorAdam Reichold <adam.reichold@t-online.de>2018-08-26 21:46:31 +0200
committerAlbert Astals Cid <tsdgeos@yahoo.es>2018-10-05 09:46:33 +0000
commite44e90b434434de5ea3b23d3a40ded7a5ad05b1c (patch)
tree4908b1962b57ac288f1cd3ec8b01800bd411c210 /goo
parent571a321721c5b166c402995b0a8e015f10948c31 (diff)
Remove GooList::put as it is apparently unused.
Diffstat (limited to 'goo')
-rw-r--r--goo/GooList.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/goo/GooList.h b/goo/GooList.h
index 0fbb45ef..9773ae89 100644
--- a/goo/GooList.h
+++ b/goo/GooList.h
@@ -59,10 +59,6 @@ struct GooList : public std::vector<void *> {
// Assumes 0 <= i < length.
void *get(int i) const { return (*this)[i]; }
- // Replace the <i>th element.
- // Assumes 0 <= i < length.
- void put(int i, void *p) { (*this)[i] = p; }
-
// Append an element to the end of the list.
void append(void *p) {
push_back(p);