Set *correct* g++ options.

From-SVN: r29377
This commit is contained in:
Nathan Sidwell 1999-09-13 13:14:43 +00:00
parent 6e47d69e32
commit a992ebf6ce
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
// Bug: f1 and f2 are treated as overloaded when they aren't.
// Build don't link:
// Special g++ Options: -pedantic -errors -w
// Special g++ Options: -ansi -pedantic-errors -w
int i;
void f1(double) { }

View File

@ -1,6 +1,6 @@
// Bug: func is treated as an overloaded function when it isn't.
// Build don't link:
// Special g++ Options: -pedantic -errors -w
// Special g++ Options: -ansi -pedantic-errors -w
int *func () { return 0; }