Бележка
Достъпът до тази страница изисква удостоверяване. Можете да опитате да влезете или да промените директориите.
Достъпът до тази страница изисква удостоверяване. Можете да опитате да промените директориите.
preprocessor command must start as first nonwhite space
Remarks
The # sign of a preprocessor directive must be the first character on a line that is not white space. Ensure that the previous line doesn't contain a trailing escape.
Example
The following example generates C2014:
// C2014.cpp
// compile with: /c
int a; #define A // C2014
int b;\
#define B // C2014
int c;
#define C // OK