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.
// Build don't link:
// Special g++ Options: -pedantic -errors -w
// Special g++ Options: -ansi -pedantic-errors -w
int i;
void f1(double) { }
......
// 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; }
......
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