S
Steven Wong
Just wondering, is it portable to write:
something* pSomething = getSomething();
if( pSomething && pSomething->stuff() ) {
....
}
I'm not sure if the condition statement is always shortcircuited for
every implementation of C++?
TIA
something* pSomething = getSomething();
if( pSomething && pSomething->stuff() ) {
....
}
I'm not sure if the condition statement is always shortcircuited for
every implementation of C++?
TIA