Core: operator+(String, int) removed (confusing)

git-svn-id: svn://ultimatepp.org/upp/trunk@7110 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2014-03-28 12:19:53 +00:00
parent 3a0cbf860b
commit 453889fdd9

View file

@ -142,8 +142,6 @@ public:
friend String operator+(const String& a, const String& b) { String c(a); c += b; return c; }
friend String operator+(const String& a, const tchar *b) { String c(a); c += b; return c; }
friend String operator+(const tchar *a, const String& b) { String c(a); c += b; return c; }
friend String operator+(const String& a, int b) { String c(a); c += b; return c; }
friend String operator+(int a, const String& b) { String c(a, 1); c += b; return c; }
friend String operator+(const String& a, tchar b) { String c(a); c += b; return c; }
friend String operator+(tchar a, const String& b) { String c(a, 1); c += b; return c; }
};