Skip to content
Snippets Groups Projects
Commit f21092e5 authored by yanmorin's avatar yanmorin
Browse files

Removing another iter != 0
Removing a ClassName:: inside a .h?
parent 397ce0b6
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ public:
{
setCancel(cancelDeferred);
}
TCPStreamPool::~TCPStreamPool();
~TCPStreamPool();
void run();
void send(const std::string& response);
......
......@@ -1607,7 +1607,7 @@ bool
ManagerImpl::accountExists(const AccountID& accountID)
{
AccountMap::iterator iter = _accountMap.find(accountID);
if ( iter == 0 || iter == _accountMap.end() ) {
if ( iter == _accountMap.end() ) {
return false;
}
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment