F
Frédéric
Hi,
I'm stuck with the order of evaluation of operands. With this simple
statement :
some_type foobar = foo() * bar();
gcc 4.1 executes :
bar
foo
operator*
Is the order in which all functions are executed standard ? May I rely on
such a detail ?
Thanks.
I'm stuck with the order of evaluation of operands. With this simple
statement :
some_type foobar = foo() * bar();
gcc 4.1 executes :
bar
foo
operator*
Is the order in which all functions are executed standard ? May I rely on
such a detail ?
Thanks.