--- aspell-0.50.3.old/modules/speller/default/split.cpp 2001-11-29 19:55:48.000000000 -0800 +++ aspell-0.50.3/modules/speller/default/split.cpp 2003-01-15 21:29:57.000000000 -0800 @@ -1,4 +1,4 @@ -#include +#include #include "split.hpp" using namespace std; @@ -8,7 +8,7 @@ vector split(const String & str) { vector data; - istrstream s(str.c_str()); + istringstream s(str.c_str()); String item; while (s >> item) { data.push_back(item);