> I guess this will break backward compatibility, won't it?

Even GCC 2.96 supports the modern C++ style headers:

[EMAIL PROTECTED] cat hello.cpp
#include <iostream>

using namespace std;

int main (void)
{
  cout << "Hello world" << endl;
  return 0;
}
[EMAIL PROTECTED] g++ --version
2.96
[EMAIL PROTECTED] g++ hello.cpp
[EMAIL PROTECTED] ./a.out
Hello world
[EMAIL PROTECTED]

Considering we are going to have 4.3 sometime soon, I do not think we
should bother too much about losing backwards compatibility. :-)

Happy hacking,
Debarshi
-- 
"From what we get, we can make a living; what we give, however, makes a life."
    -- Arthur Ashe


_______________________________________________
Help-gengetopt mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gengetopt

Reply via email to