]> git.saurik.com Git - wxWidgets.git/commitdiff
Hm, better make the operators inline.
authorOve Kaaven <ovek@arcticnet.no>
Fri, 16 Apr 1999 16:41:05 +0000 (16:41 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Fri, 16 Apr 1999 16:41:05 +0000 (16:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2202 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h

index 201c91935dfd58d54b22c5bc9e50821b7d72e8d4..d4bffe681961232411a7ed7917fffa4e7526b1b0 100644 (file)
@@ -1003,14 +1003,14 @@ wxString WXDLLEXPORT operator+(wxChar ch, const wxString& string);
 wxString WXDLLEXPORT operator+(const wxString& string, const wxChar *psz);
 wxString WXDLLEXPORT operator+(const wxChar *psz, const wxString& string);
 #if wxUSE_UNICODE
-wxString WXDLLEXPORT operator+(const wxString& string, const wxWCharBuffer buf)
+inline wxString WXDLLEXPORT operator+(const wxString& string, const wxWCharBuffer buf)
 { return string + (const wchar_t *)buf; }
-wxString WXDLLEXPORT operator+(const wxWCharBuffer buf, const wxString& string)
+inline wxString WXDLLEXPORT operator+(const wxWCharBuffer buf, const wxString& string)
 { return (const wchar_t *)buf + string; }
 #else
-wxString WXDLLEXPORT operator+(const wxString& string, const wxCharBuffer buf)
+inline wxString WXDLLEXPORT operator+(const wxString& string, const wxCharBuffer buf)
 { return string + (const char *)buf; }
-wxString WXDLLEXPORT operator+(const wxCharBuffer buf, const wxString& string)
+inline wxString WXDLLEXPORT operator+(const wxCharBuffer buf, const wxString& string)
 { return (const char *)buf + string; }
 #endif