Re: C++ function pointer weirdness

2005-02-22 Thread Gabriel Dos Reis
Volker Reichelt <[EMAIL PROTECTED]> writes: | Yesterday the output of the following program changed | (probably due to the fix for PR19076): Thanks for raising this issue. | | == | template int ref (T&){ return

C++ function pointer weirdness

2005-02-22 Thread Volker Reichelt
Yesterday the output of the following program changed (probably due to the fix for PR19076): == template int ref (T&){ return 0; } template int ref (const T&) { return 1; } template int ref (const volat