Re: [Boost-users] [BULK] Re: [BULK] Re: [range] From 1.33.0 gives new warningvs 1.32
-----Original Message----- From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of Thorsten Ottosen Sent: Monday, August 15, 2005 2:38 PM To: boost-users@lists.boost.org Subject: [BULK] Re: [Boost-users] [BULK] Re: [range] From 1.33.0 gives new warningvs 1.32 Importance: Low
perhaps something like this is needed?
template< class Char > inline Char* str_end( Char* s ) { - return (Char*)str_end( s, s ); + return const_cast
(str_end( s, s )); what's the difference? A c-style cast is also a const-cast.
You didn't just say that.
Apparently I did.
What's the difference in the generated object code?
A small percentage of people read object code on a regular basis. I tend to read the source more.
participants (1)
-
Sohail Somani