Mercurial > dedupe
diff EditDistance.cpp @ 34:fda70a362ed5
Remove whitespace.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Thu, 06 Sep 2012 21:33:24 +0200 |
| parents | 06166d6c083b |
| children | f711ddb56ae7 |
line wrap: on
line diff
--- a/EditDistance.cpp Thu Sep 06 21:32:33 2012 +0200 +++ b/EditDistance.cpp Thu Sep 06 21:33:24 2012 +0200 @@ -40,7 +40,7 @@ if (res) return *res; - + // Allocate distance matrix QList<QList<int> > d; QList<int> temp; @@ -78,7 +78,7 @@ } } } - + // Return final value int retVal = d[a.size()][ b.size()]; cache->insert(lup, retVal);
