1 2 3 4 5 6 7 8 9 10
int foo1(bool b, int tv, int fv) { return b ? tv : fv; } int foo2(bool b, int tv, int fv) { return b ? tv : fv; }