diff options
author | Daniel Neus <[email protected]> | 2016-02-08 21:01:11 +0100 |
---|---|---|
committer | Daniel Neus <[email protected]> | 2016-02-08 21:07:18 +0100 |
commit | 4242b7593b5aae2b2d1483fcc7ff002c1deeb956 (patch) | |
tree | fcaaab2bf7d050852e90b6694813fdd3b6551786 /src/tests | |
parent | 9102d33dbd35e36d385ad813220446384a214030 (diff) |
V816 It is more efficient to catch exception by reference rather than by value. asn1_time.cpp 159
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test_x509_path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_x509_path.cpp b/src/tests/test_x509_path.cpp index 9bdf3721a..7e2039ab4 100644 --- a/src/tests/test_x509_path.cpp +++ b/src/tests/test_x509_path.cpp @@ -145,7 +145,7 @@ std::vector<Test::Result> NIST_Path_Validation_Tests::run() // Do nothing, just test filesystem access Botan::get_files_recursive(nist_test_dir); } - catch(Botan::No_Filesystem_Access) + catch(Botan::No_Filesystem_Access&) { Test::Result result("NIST path validation"); result.test_note("Skipping due to missing filesystem access"); |