Hi,<br><br>Recently I upgraded my OS to the Ubuntu 9.04 from jaunty and it has g++4.3.3 and some codes which were happily <br>working for years suddenly stumbled upon as simple code as<br>#include <stdlib.h><br><br>#include <stdio.h><br>
using namespace std;<br><br>int main() <br>{<br>   int n = 10;<br>   int m = 10;<br>   int k = std::min(n,m);<br>}<br><br>error: expected unqualified-id before ‘)’<br><br>or in some cases:<br><br>error: ‘min’ is not a member of ‘std’<br>
<br>What happended to these functions in the latest compilers ?<br><br><br>Mir<br>