Catch exceptions by reference

This commit is contained in:
Daniel James
2017-12-22 16:58:15 +00:00
parent 92ce66be64
commit 07758b7af8
2 changed files with 5 additions and 5 deletions

View File

@@ -90,7 +90,7 @@ template <class T> struct swap_base : public test::exception_base
{
try {
d.x.swap(d.y);
} catch (std::runtime_error) {
} catch (std::runtime_error&) {
}
DISABLE_EXCEPTIONS;