C>inline C>int Action(int& x) C>{ C> return x > 0 ? x = 9 : x; C>} C>
inline int NormalizeX(int& x) { return x > 0 ? (x = 9) : x; }