diff options
author | Jack Lloyd <[email protected]> | 2018-03-16 12:01:01 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-03-16 12:01:01 -0400 |
commit | 6c8ffb4d2ee1f762804fc8d6a90a3d1761462503 (patch) | |
tree | 2b88c8d5a809cca03f3f66e6c1a053b1b7fa338a /src/tests/test_keywrap.cpp | |
parent | f787047f33d073036883b609d293656510ce8b16 (diff) |
Catch exceptions by reference not value
Fixes a new warning in GCC 8
Diffstat (limited to 'src/tests/test_keywrap.cpp')
-rw-r--r-- | src/tests/test_keywrap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_keywrap.cpp b/src/tests/test_keywrap.cpp index a5b216562..de63d8067 100644 --- a/src/tests/test_keywrap.cpp +++ b/src/tests/test_keywrap.cpp @@ -160,7 +160,7 @@ class NIST_Keywrap_Invalid_Tests final : public Text_Based_Test result.test_failure("Was able to unwrap invalid keywrap input"); } - catch(Botan::Integrity_Failure) + catch(Botan::Integrity_Failure&) { result.test_success("Rejected invalid input"); } |