Commit a992ebf6 by Nathan Sidwell

Set *correct* g++ options.

From-SVN: r29377
parent 6e47d69e
// Bug: f1 and f2 are treated as overloaded when they aren't. // Bug: f1 and f2 are treated as overloaded when they aren't.
// Build don't link: // Build don't link:
// Special g++ Options: -pedantic -errors -w // Special g++ Options: -ansi -pedantic-errors -w
int i; int i;
void f1(double) { } void f1(double) { }
......
// Bug: func is treated as an overloaded function when it isn't. // Bug: func is treated as an overloaded function when it isn't.
// Build don't link: // Build don't link:
// Special g++ Options: -pedantic -errors -w // Special g++ Options: -ansi -pedantic-errors -w
int *func () { return 0; } int *func () { return 0; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment