diff options
author | Vincent Richard <[email protected]> | 2013-02-26 12:05:34 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-02-26 12:05:34 +0000 |
commit | 5da73d4efc9baa6d5d97ca9ecc20abd87c14520e (patch) | |
tree | e9d8adec01a46982706a4d454a7d10c31f077f39 | |
parent | Fixed typo in function name. (diff) | |
download | vmime-5da73d4efc9baa6d5d97ca9ecc20abd87c14520e.tar.gz vmime-5da73d4efc9baa6d5d97ca9ecc20abd87c14520e.zip |
Fixed warnings about unused variables.
-rw-r--r-- | vmime/net/imap/IMAPParser.hpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vmime/net/imap/IMAPParser.hpp b/vmime/net/imap/IMAPParser.hpp index 6a68b0c0..2e6f7cc8 100644 --- a/vmime/net/imap/IMAPParser.hpp +++ b/vmime/net/imap/IMAPParser.hpp @@ -1229,7 +1229,7 @@ public: parser.check <one_char <'?'> >(line, &pos); parser.check <one_char <'='> >(line, &pos); } - catch (std::exception& e) + catch (std::exception&) { delete (theCharset); delete (theEncoding); @@ -4962,12 +4962,12 @@ private: { resp->go(*this, line, currentPos); } - catch (exceptions::operation_timed_out& e) + catch (exceptions::operation_timed_out&) { // Always rethrow throw; } - catch (exception& e) + catch (exception&) { *currentPos = oldPos; @@ -4997,12 +4997,12 @@ public: TYPE term; term.go(*this, line, currentPos); } - catch (exceptions::operation_timed_out& e) + catch (exceptions::operation_timed_out&) { // Always rethrow throw; } - catch (exception& e) + catch (exception&) { *currentPos = oldPos; @@ -5024,12 +5024,12 @@ public: TYPE term(arg); term.go(*this, line, currentPos); } - catch (exceptions::operation_timed_out& e) + catch (exceptions::operation_timed_out&) { // Always rethrow throw; } - catch (exception& e) + catch (exception&) { *currentPos = oldPos; |