mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
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:
parent
3a0cbf860b
commit
453889fdd9
1 changed files with 0 additions and 2 deletions
|
|
@ -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; }
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue