Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
#line expected a line number, found 'token'
Remarks
The #line directive must be followed by a line number.
Example
The following example generates C2005:
// C2005.cpp
int main() {
   int i = 0;
   #line i   // C2005
}
Possible resolution:
// C2005b.cpp
int main() {
   int i = 0;
   #line 0
}