C++ class decls need a semicolon

This commit is contained in:
shaver%netscape.com 1998-11-25 04:54:02 +00:00
Родитель c373687100
Коммит 6807c3fcf4
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -23,7 +23,7 @@ interface(TreeState *state)
if (!process_node(state))
return FALSE;
fprintf(state->file, "\n}\n");
fprintf(state->file, "\n};\n");
return TRUE;
}

Просмотреть файл

@ -23,7 +23,7 @@ interface(TreeState *state)
if (!process_node(state))
return FALSE;
fprintf(state->file, "\n}\n");
fprintf(state->file, "\n};\n");
return TRUE;
}