mirror of
https://github.com/blupi-games/planetblupi
synced 2024-12-30 10:15:36 +01:00
Fix regression introduced by a1549544d49fdbf4b118afe0031a882ff65ac212
The next version must be 1.10 instead of 1.9.3 in order to re-enable the check update on all v1.9 versions.
This commit is contained in:
parent
4c234737ff
commit
1dcddd1f6c
@ -94,7 +94,7 @@ split (const std::string & s, char delim, Out result)
|
||||
std::stringstream ss;
|
||||
ss.str (s);
|
||||
std::string item;
|
||||
while (std::getline (ss, item, delim).good ())
|
||||
while (std::getline (ss, item, delim))
|
||||
*(result++) = item;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user