Fix clang warnings

This commit is contained in:
Howard Hinnant
2014-02-25 15:49:27 -05:00
committed by Vinnie Falco
parent 9bf1a76e91
commit cd30e552a7
28 changed files with 115 additions and 66 deletions

View File

@@ -497,7 +497,7 @@ public:
//
//--------------------------------------------------------------------------
void onWrite (PropertyStream& stream)
void onWrite (PropertyStream::Map& stream)
{
}
@@ -589,7 +589,7 @@ public:
PeerByShortId::iterator const iter (
m_shortIdMap.find (id));
if (iter != m_shortIdMap.end ())
iter->second;
return iter->second;
return Peer::pointer();
}
};