Compiler Error C2010
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2010.
character' : unexpected in macro formal parameter list
The character is used incorrectly in the formal parameter list of a macro definition. Remove the character to resolve the error.
The following sample generates C2010:
// C2010.cpp // compile with: /c #define mymacro(a|) (2*a) // C2010 #define mymacro(a) (2*a) // OK
Show: