mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
Core: Fixed to compile
This commit is contained in:
parent
aa0ead64ff
commit
5943687992
1 changed files with 2 additions and 2 deletions
|
|
@ -93,8 +93,8 @@ public:
|
|||
int Put(T&& k) { return Put0(pick(k), Smear(k)); }
|
||||
int FindPut(const T& k, bool& p){ return FindPut0(k, p); }
|
||||
int FindPut(T&& k, bool& p) { return FindPut0(pick(k), p); }
|
||||
int FindPut(const T& k) { bool p; return FindPut0(k); }
|
||||
int FindPut(T&& k) { bool p; return FindPut0(pick(k)); }
|
||||
int FindPut(const T& k) { bool p; return FindPut0(k, p); }
|
||||
int FindPut(T&& k) { bool p; return FindPut0(pick(k), p); }
|
||||
|
||||
void Unlink(int i);
|
||||
int UnlinkKey(const T& k);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue