summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorchatty1994-02-24 10:33:29 +0000
committerchatty1994-02-24 10:33:29 +0000
commitd9d4dc11af0b9f6863b6cd14c85ef1b0ea8f98a5 (patch)
treeb077b56737524876549af23677e7b5292e95a017 /utils
parent9dde69f588396fed5d4997e2edefdf6dd3f11687 (diff)
downloadivy-league-d9d4dc11af0b9f6863b6cd14c85ef1b0ea8f98a5.zip
ivy-league-d9d4dc11af0b9f6863b6cd14c85ef1b0ea8f98a5.tar.gz
ivy-league-d9d4dc11af0b9f6863b6cd14c85ef1b0ea8f98a5.tar.bz2
ivy-league-d9d4dc11af0b9f6863b6cd14c85ef1b0ea8f98a5.tar.xz
Added rank arg to Find
Diffstat (limited to 'utils')
-rw-r--r--utils/List.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/List.h b/utils/List.h
index 72b015f..342a907 100644
--- a/utils/List.h
+++ b/utils/List.h
@@ -67,7 +67,7 @@ inline int IsEmpty () const { return !LastLink; }
CcuListItem* Last ();
CcuListItem* Nth (int n);
int Length () const;
- int Find (CcuListItem*) const;
+ int Find (CcuListItem*, int* = 0) const;
void Append (CcuListItem*);
void Prepend (CcuListItem*);