diff options
author | lloyd <[email protected]> | 2009-12-23 00:36:41 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-23 00:36:41 +0000 |
commit | 1a1a34bebec4e837e65d376cd1b61b68231c8c25 (patch) | |
tree | 88d605c1df3756cc2aa8ae70680db119c4116ec7 /checks/misc.cpp | |
parent | 1e094832bcdf416ec86ea2cf992f9fe5c4871a08 (diff) |
Avoid VC++ warning
Diffstat (limited to 'checks/misc.cpp')
-rw-r--r-- | checks/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/misc.cpp b/checks/misc.cpp index 198671451..a49778dc6 100644 --- a/checks/misc.cpp +++ b/checks/misc.cpp @@ -43,7 +43,7 @@ SecureVector<byte> decode_hex(const std::string& in) pipe.process_msg(in); result = pipe.read_all(); } - catch(std::exception& e) + catch(std::exception) { result.destroy(); } |