mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Avoid conversion to int
This commit is contained in:
parent
f9598cfe7c
commit
e0cbfb0d29
@ -154,8 +154,8 @@ int RiaStdStringTools::computeEditDistance( const std::string& x, const std::str
|
|||||||
{
|
{
|
||||||
// for all i and j, T[i,j] will hold the Levenshtein distance between
|
// for all i and j, T[i,j] will hold the Levenshtein distance between
|
||||||
// the first i characters of x and the first j characters of y
|
// the first i characters of x and the first j characters of y
|
||||||
int m = x.length();
|
size_t m = x.length();
|
||||||
int n = y.length();
|
size_t n = y.length();
|
||||||
|
|
||||||
std::vector<std::vector<int>> T( m + 1, std::vector<int>( n + 1, 0 ) );
|
std::vector<std::vector<int>> T( m + 1, std::vector<int>( n + 1, 0 ) );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user