fixed a whole bunch of build warnings on gcc and msvc, along with some fixes discovered along the way
This commit is contained in:
@@ -101,7 +101,7 @@ namespace libtorrent
|
||||
bool is_space(char c)
|
||||
{
|
||||
const static char* ws = " \t\n\r\f\v";
|
||||
return bool(std::strchr(ws, c));
|
||||
return std::strchr(ws, c) != 0;
|
||||
}
|
||||
|
||||
// generate a url-safe random string
|
||||
|
Reference in New Issue
Block a user