- Sorting implemented using a non-relocatable task list, a stable
  sort, and type-specific comparisons.
This commit is contained in:
Paul Beckingham 2011-05-05 22:37:54 -04:00
parent 9268e552d8
commit 4584da8895
8 changed files with 176 additions and 174 deletions

View file

@ -220,7 +220,7 @@ int longestWord (const std::string& input)
{
int longest = 0;
int length = 0;
std::string::size_type i;
std::string::size_type i = 0;
int character;
while (character = utf8_next_char (input, i))