diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-09-03 13:55:18 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-09-03 13:55:18 +0300 |
commit | 17fb3ac805acbaf5e503d44ac96d928333164f2d (patch) | |
tree | 6c482c5bb199e09e1e66170bba27a46d93229082 /basic | |
parent | 48d00430e2b1ceb16a0c377c4aa6c40b733eb529 (diff) |
WaE: C4101: 'ex' : unreferenced local variable
Change-Id: If56eaa48c176138cd1b74da2f7f0aa71e3845894
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/comp/dim.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/comp/dim.cxx b/basic/source/comp/dim.cxx index 64d056534c8f..4173909700f4 100644 --- a/basic/source/comp/dim.cxx +++ b/basic/source/comp/dim.cxx @@ -1349,7 +1349,7 @@ bool SbiParser::IsUnoInterface(const OUString& sTypeName) } return false; } - catch(const Exception& ex) + catch(const Exception&) { OSL_FAIL("Could not create reflection.CoreReflection."); } |