This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: operands to min and max must have the same type...


>> ptrdiff_t new_size = std::max(static_cast<ptrdiff_t>(2 * old_size), ptrdiff_t (1));
>
>Err...  I don't understand.  Why must one of them be a static_cast
>while the other is ok as a functional cast?  Are conventions like this
>documented anywhere?

Sorry, in my haste I didn't notice the second. I suppose you could just
do 

ptrdiff_t(1 * old_size), ptrdiff_t(1)

(note the lack of space). 

See C++STYLE.

-benjamin


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]