~mmach/netext73/ninja-build

« back to all changes in this revision

Viewing changes to src/edit_distance.cc

  • Committer: mmach
  • Date: 2022-05-24 14:54:55 UTC
  • Revision ID: netbit73@gmail.com-20220524145455-qfaw0s6b68c2y293
1.11.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#include <algorithm>
18
18
#include <vector>
19
19
 
 
20
using namespace std;
 
21
 
20
22
int EditDistance(const StringPiece& s1,
21
23
                 const StringPiece& s2,
22
24
                 bool allow_replacements,