[Libreoffice-commits] .: regexp/source
Caolán McNamara
caolan at kemper.freedesktop.org
Wed Apr 13 12:39:22 PDT 2011
regexp/source/reclass.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 90dd4e98122517c24227db56f22ef60ad063e5dd
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Apr 13 13:46:24 2011 +0100
WaE: unused variables
diff --git a/regexp/source/reclass.cxx b/regexp/source/reclass.cxx
index 65fdb85..448dfe9 100644
--- a/regexp/source/reclass.cxx
+++ b/regexp/source/reclass.cxx
@@ -1689,7 +1689,7 @@ Regexpr::regex_compile()
sal_Unicode tmp = translit->transliterateChar2Char(c);
BUF_PUSH(tmp);
(*pending_exact)++;
- } catch (const ::com::sun::star::i18n::MultipleCharsOutputException& e) {
+ } catch (const ::com::sun::star::i18n::MultipleCharsOutputException&) {
::rtl::OUString o2( translit->transliterateChar2String( c));
sal_Int32 len2 = o2.getLength();
const sal_Unicode * k2 = o2.getStr();
@@ -2934,7 +2934,7 @@ Regexpr::set_list_bit(sal_Unicode c, sal_Unicode *b)
try {
sal_Unicode tmp = translit->transliterateChar2Char(c);
b[tmp / BYTEWIDTH] |= 1 << (tmp % BYTEWIDTH);
- } catch (const ::com::sun::star::i18n::MultipleCharsOutputException& e) {
+ } catch (const ::com::sun::star::i18n::MultipleCharsOutputException&) {
::rtl::OUString o2( translit->transliterateChar2String( c));
sal_Int32 len2 = o2.getLength();
const sal_Unicode * k2 = o2.getStr();
More information about the Libreoffice-commits
mailing list