From 872b4c4eb1940a5cf380273dbde0b6079d51f83a Mon Sep 17 00:00:00 2001 From: Volker Grabsch Date: Mon, 16 Apr 2012 15:25:27 +0200 Subject: Cleanup files --- src/hunspell-test.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hunspell-test.cxx b/src/hunspell-test.cxx index a66b434..67393d5 100644 --- a/src/hunspell-test.cxx +++ b/src/hunspell-test.cxx @@ -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; } -- cgit v0.12