# HG changeset patch # User Volker Grabsch # Date 1334582727 -7200 # Node ID 639f0e5a9afa05d8c688e5f53d1d6a25bff814a2 # Parent c906500af274cd63c39b1dd3cc7972075bd1abcf Cleanup files diff -r c906500af274 -r 639f0e5a9afa src/hunspell-test.cxx --- a/src/hunspell-test.cxx Mon Apr 16 14:54:31 2012 +0200 +++ b/src/hunspell-test.cxx Mon Apr 16 15:25:27 2012 +0200 @@ -17,7 +17,7 @@ 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 @@ { 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; }