forked from qt-creator/qt-creator
MSVC compile fix
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user