aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-02-26 12:05:34 +0000
committerVincent Richard <[email protected]>2013-02-26 12:05:34 +0000
commit5da73d4efc9baa6d5d97ca9ecc20abd87c14520e (patch)
treee9d8adec01a46982706a4d454a7d10c31f077f39
parentFixed typo in function name. (diff)
downloadvmime-5da73d4efc9baa6d5d97ca9ecc20abd87c14520e.tar.gz
vmime-5da73d4efc9baa6d5d97ca9ecc20abd87c14520e.zip
Fixed warnings about unused variables.
-rw-r--r--vmime/net/imap/IMAPParser.hpp14
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;