
www.Usenet.com
| <-- __Chronological__ --> | <-- __Thread__ --> |
"xpuente" <[EMAIL PROTECTED]> writes:
Ok... Is just a example. A real situation is a method like:
Boolean isChannelValid(unsigned ch) const
{return ( ((ch>=1)&&(ch<=m_SizeCV)) ? true : false ); }
What do you get for the functionally identical
{return (ch>=1)&&(ch<=m_SizeCV); }
? (wondering if the compiler writers didn't handle some unexpected constructions very well)
-- - <[EMAIL PROTECTED]> "almost all programming can be viewed as an exercise in caching"
| <-- __Chronological__ --> | <-- __Thread__ --> |