Revert "MSVC compile fix"

This reverts commit 4c29c61a75.
This commit is contained in:
Alessandro Portale
2010-08-13 16:30:52 +02:00
parent 045e0347e8
commit cd55454ef0

View File

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