0
What is [--fpermissive] in c++?
2 Answers
0
"--fpermissive" is a compiler switch for g++ and clang++ which turns some compiler errors into warnings. If you can avoid using it at almost any cost, avoid it since compiler checks often times prevent nonsense or or otherwise problematic binary code.
- 6
hello guys