MSVC compile fix

This commit is contained in:
Alessandro Portale
2010-08-12 21:07:25 +02:00
parent 47562aa1e8
commit 4c29c61a75

View File

@@ -156,7 +156,7 @@ private:
int port = 0; int port = 0;
do { do {
const char next = nextChar(); const char next = nextChar();
if (!std::isdigit(next)) if (!isdigit(next))
break; break;
port = 10*port + next - '0'; port = 10*port + next - '0';
++m_pos; ++m_pos;