diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-05 16:53:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-05 16:53:38 +0200 |
commit | 089fdb63139e424e36d4aa9c892f65bdcbdd1116 (patch) | |
tree | 4b3090d027e24a9f9f7e5cbb1b5edf31b5386c77 /connectivity | |
parent | 077fd3d95cc00bb3cd99f6bb7dae610877ad59b5 (diff) |
OSL_ENSURE always makes the condition visible to the compiler now
Change-Id: Ifc2f4592fdd4cfebdefc0c4b94656ffc06ddf879
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/mozab/MColumnAlias.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/mozab/MColumnAlias.cxx b/connectivity/source/drivers/mozab/MColumnAlias.cxx index 89ba2d63cdb8..f3ba63e75684 100644 --- a/connectivity/source/drivers/mozab/MColumnAlias.cxx +++ b/connectivity/source/drivers/mozab/MColumnAlias.cxx @@ -143,7 +143,7 @@ void OColumnAlias::initialize( const ::com::sun::star::uno::Reference< ::com::su } } - OSL_ENSURE( bFound, "OColumnAlias::setAlias: did not find a programmatic name which exists in the configuration!" ); (void)bFound; + OSL_ENSURE( bFound, "OColumnAlias::setAlias: did not find a programmatic name which exists in the configuration!" ); } } catch( const Exception& ) |