diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-04-09 12:33:56 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-04-09 12:33:56 +0200 |
commit | 4eccc3798b54b90d3d10dc5d5c1347ec69934915 (patch) | |
tree | 12af479dce7e28a1b3e144880279518d7370e707 /pyuno/source/module | |
parent | 6b8965bc816f8edda29fd147db66fa044be3c64a (diff) |
warning C4101: 'e' : unreferenced local variable
Change-Id: I2828021d60d82e43358ba98a1a3b4967a6901cd6
Diffstat (limited to 'pyuno/source/module')
-rw-r--r-- | pyuno/source/module/pyuno_module.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_module.cxx b/pyuno/source/module/pyuno_module.cxx index 4403e1a63fd8..9662958c87f2 100644 --- a/pyuno/source/module/pyuno_module.cxx +++ b/pyuno/source/module/pyuno_module.cxx @@ -354,7 +354,7 @@ static PyObject* initPoniesMode( // guess casting pFunc is undefined behavior but don't see a better way ((void (SAL_CALL *)(XMultiServiceFactory*)) pFunc) (xMSF.get()); } - catch (const com::sun::star::uno::Exception & e) + catch (const com::sun::star::uno::Exception &) { abort(); } |