mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-02 16:22:40 -06:00
Core: String: Fixed to compile
git-svn-id: svn://ultimatepp.org/upp/trunk@10007 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
8f11c6f135
commit
32e7ff5599
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ public:
|
|||
|
||||
int FindFirstOf(int len, const tchar *set, int from = 0) const;
|
||||
int FindFirstOf(const tchar *set, int from = 0) const { return FindFirstOf(strlen__(set), set, from); }
|
||||
int FindFirstOf(const String& set, int from = 0) const { return FindFirstOf(s.GetCount(), ~set, from); }
|
||||
int FindFirstOf(const String& set, int from = 0) const { return FindFirstOf(set.GetCount(), ~set, from); }
|
||||
|
||||
friend bool operator<(const String& a, const String& b) { return a.Compare(b) < 0; }
|
||||
friend bool operator<(const String& a, const tchar *b) { return a.Compare(b) < 0; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue