Cleanup files

This commit is contained in:
Volker Grabsch 2012-04-16 15:25:27 +02:00
parent c2352afea1
commit 872b4c4eb1
1 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ int main(int argc, char *argv[])
dic.close();
std::ofstream aff ("hunspell-test.aff");
aff << "SET UTF-8\nTRY loredWH\nMAXDIFF 1";
aff.close();
aff.close();
Hunspell h("hunspell-test.aff", "hunspell-test.dic");
if (h.spell("Hello") == 0)
@ -28,10 +28,10 @@ int main(int argc, char *argv[])
{
std::cerr << "Error: hunspell marked wrong word as correct" << std::endl;
}
char ** result;
int n = h.suggest(&result, "ell");
for (int i = 0; i < n; i++) std::cout << result[i];
return 0;
}