Mercurial > dedupe
diff EditDistance.cpp @ 9:b5943e4bf676
Fix up header includes.
Introduce outer catch.
Fix coding style.
Remove spurious debug output.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Wed, 22 Aug 2012 18:48:07 +0200 |
| parents | a3834af36579 |
| children | 06166d6c083b |
line wrap: on
line diff
--- a/EditDistance.cpp Wed Aug 22 18:18:20 2012 +0200 +++ b/EditDistance.cpp Wed Aug 22 18:48:07 2012 +0200 @@ -23,8 +23,8 @@ int EditDistance::Compute(QString a, QString b, bool remove) { if (remove) { - a=removeDiacritics(a); - b=removeDiacritics(b); + a = removeDiacritics(a); + b = removeDiacritics(b); } OrderedPair<QString> lup(a, b);
