Core: String: Fixed to compile

git-svn-id: svn://ultimatepp.org/upp/trunk@10007 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-07-05 06:47:19 +00:00
parent 8f11c6f135
commit 32e7ff5599

View file

@ -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; }