In VS2015 is there an equivalent flag of GCC -fpermissive? That\'s for a cpp application Thanks S.
The theoretical equivalent is /Ze.
/Ze
However, this allows Microsoft-specific extensions, whereas -fpermissive allows GCC-specific extensions. If you want your code to be portable, write portable code. It's that simple.
-fpermissive