From: Paul Cornett Date: Wed, 2 Dec 2009 17:27:17 +0000 (+0000) Subject: use const_cast where appropriate X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d1750c03ce3743f4e9f21745d3496b99cd8ee6c9 use const_cast where appropriate git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxcrt.h b/include/wx/wxcrt.h index b0dffa4adc..b99543cf3b 100644 --- a/include/wx/wxcrt.h +++ b/include/wx/wxcrt.h @@ -82,7 +82,7 @@ inline bool wxIsEmpty(const wxCStrData& s) { return s.AsString().empty(); } for(;l && *s != c;--l, ++s) {} if(l) - return (wxChar*)s; + return const_cast(s); return NULL; } @@ -724,30 +724,30 @@ inline const T *wxStrpbrk(const S& s, const wxScopedCharTypeBuffer& accept) /* inlined non-const versions */ template inline char *wxStrstr(char *haystack, T needle) - { return (char *)wxStrstr((const char *)haystack, needle); } + { return const_cast(wxStrstr(const_cast(haystack), needle)); } template inline wchar_t *wxStrstr(wchar_t *haystack, T needle) - { return (wchar_t *)wxStrstr((const wchar_t *)haystack, needle); } + { return const_cast(wxStrstr(const_cast(haystack), needle)); } template inline char * wxStrchr(char *s, T c) - { return (char *)wxStrchr((const char *)s, c); } + { return const_cast(wxStrchr(const_cast(s), c)); } template inline wchar_t * wxStrchr(wchar_t *s, T c) { return (wchar_t *)wxStrchr((const wchar_t *)s, c); } template inline char * wxStrrchr(char *s, T c) - { return (char *)wxStrrchr((const char *)s, c); } + { return const_cast(wxStrrchr(const_cast(s), c)); } template inline wchar_t * wxStrrchr(wchar_t *s, T c) - { return (wchar_t *)wxStrrchr((const wchar_t *)s, c); } + { return const_cast(wxStrrchr(const_cast(s), c)); } template inline char * wxStrpbrk(char *s, T accept) - { return (char *)wxStrpbrk((const char *)s, accept); } + { return const_cast(wxStrpbrk(const_cast(s), accept)); } template inline wchar_t * wxStrpbrk(wchar_t *s, T accept) - { return (wchar_t *)wxStrpbrk((const wchar_t *)s, accept); } + { return const_cast(wxStrpbrk(const_cast(s), accept)); } // ----------------------------------------------------------------------------