Trim unused variable.

This commit is contained in:
2025-08-05 00:13:42 -04:00
parent 35b54bbc0c
commit 5ee605b975

View File

@ -142,7 +142,6 @@ void Hyphenator::insertPattern (TrieBuilder *trieBuilder, char *s)
{
// Convert the a pattern like 'a1bc3d4' into a string of chars 'abcd'
// and a list of points [ 0, 1, 0, 3, 4 ].
int l = strlen (s);
std::string chars;
SimpleVector<char> points (1);