Intel® C++ Compiler XE 13.1 User and Reference Guides
Causes the compiler to inject friend functions into the enclosing namespace.
All
Linux and OS X: | -ffriend-injection -fno-friend-injection |
Windows: | None |
None
-fno-friend-injection |
The compiler does not inject friend functions into the enclosing namespace. A friend function that is not declared in an enclosing scope can only be found using argument-dependent lookup. |
This option causes the compiler to inject friend functions into the enclosing namespace, so they are visible outside the scope of the class in which they are declared.
In gcc versions 4.1 or later, this is not the default behavior. This option allows compatibility with gcc 4.0 or earlier.
None