Fixed another --style problem with our code

This commit is contained in:
Reijo Tomperi 2009-03-01 19:38:17 +00:00
parent 6495912d9a
commit f6848f14ad
2 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,10 @@ public:
class FileLocation
{
public:
FileLocation()
{
line = 0;
}
std::string file;
unsigned int line;
};

View File

@ -173,6 +173,10 @@ int main()
fout << " class FileLocation\n";
fout << " {\n";
fout << " public:\n";
fout << " FileLocation()\n";
fout << " {\n";
fout << " line = 0;\n";
fout << " }\n";
fout << " std::string file;\n";
fout << " unsigned int line;\n";
fout << " };\n";