Fix compile warnings on gcc 8

The warning was:
warning: catching polymorphic type ‘class std::exception’ by value
[-Wcatch-value=]
This commit is contained in:
Chocobo1 2018-05-07 19:44:11 +08:00 committed by sledgehammer999
parent 0d6deca15c
commit 7a93fae6e4
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

View file

@ -2945,7 +2945,7 @@ void Session::setMaxConnectionsPerTorrent(int max)
try { try {
handle.set_max_connections(max); handle.set_max_connections(max);
} }
catch (std::exception) {} catch (const std::exception &) {}
} }
} }
} }
@ -2967,7 +2967,7 @@ void Session::setMaxUploadsPerTorrent(int max)
try { try {
handle.set_max_uploads(max); handle.set_max_uploads(max);
} }
catch (std::exception) {} catch (const std::exception &) {}
} }
} }
} }