Fixing compiler warning C4101

Github-Pull: #4856
This commit is contained in:
ENikS 2014-09-05 11:37:01 -04:00 committed by Wladimir J. van der Laan
parent f3d4f1e5a1
commit ec91092df8
No known key found for this signature in database
GPG key ID: 74810B012346C9A6
9 changed files with 10 additions and 10 deletions

View file

@ -689,7 +689,7 @@ int CNetMessage::readHeader(const char *pch, unsigned int nBytes)
try {
hdrbuf >> hdr;
}
catch (std::exception &e) {
catch (const std::exception &) {
return -1;
}