Core/Server: Use nullptr instead of 0 where pointers are expected

This commit is contained in:
DDuarte
2014-08-09 21:32:26 +01:00
parent a394205eca
commit df3b08d140
39 changed files with 78 additions and 78 deletions

View File

@@ -112,7 +112,7 @@ bool MySQLConnection::Open()
else // generic case
{
port = atoi(m_connectionInfo.port_or_socket.c_str());
unix_socket = 0;
unix_socket = nullptr;
}
#endif