what is this error about??

weird error while compiling a program in dev c++

ERROR : cc1plus.exe C:\Dev-Cpp\cc1plus.exe unrecognized command line option "-fdollar-in-identifiers"

thanks
closed account (28poGNh0)
Did your program look like this

1
2
3
4
5
6
7
8
9
10
# include <iostream>
# include <cstdlib>
using namespace std;

int main()
{
    system("-fdollar-in-identifiers");

    return 0;
}
no
it dont have that fdollar in identifier thing..... maybe dev c++ files is corrupted or damaged???
omg its fixed, thanks
Topic archived. No new replies allowed.