Deprecated Syntactic Sugar in C++ for Minimum and Maximum functions
The g++ compiler does not support
`<?' and `>?'
which used to be the minimum and maximum operators any more and the user should use
`std::min' and `std::max'
instead.
The g++ compiler does not support
`<?' and `>?'
which used to be the minimum and maximum operators any more and the user should use
`std::min' and `std::max'
instead.