diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-17 16:47:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-17 16:47:54 +0100 |
commit | 7fbadc4db37e02d78fde34d6fd52feb73cc5dd1f (patch) | |
tree | a24a717e79b5184f1997744c2df84d336a0336c0 /connectivity | |
parent | 5351f621d5eb599757af95213c4b391c0f34df2e (diff) |
error C2065: ´bFound´ : undeclared identifier
Change-Id: Ibf72f77458d837849fe20361ca751dce2989830c
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/mozab/MColumnAlias.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/connectivity/source/drivers/mozab/MColumnAlias.cxx b/connectivity/source/drivers/mozab/MColumnAlias.cxx index 2a28ef569a95..89ba2d63cdb8 100644 --- a/connectivity/source/drivers/mozab/MColumnAlias.cxx +++ b/connectivity/source/drivers/mozab/MColumnAlias.cxx @@ -125,9 +125,7 @@ void OColumnAlias::initialize( const ::com::sun::star::uno::Reference< ::com::su OString sAsciiProgrammaticName( OUStringToOString( *pProgrammaticNames, RTL_TEXTENCODING_ASCII_US ) ); - #if OSL_DEBUG_LEVEL > 0 bool bFound = false; - #endif for ( AliasMap::iterator search = m_aAliasMap.begin(); ( search != m_aAliasMap.end() ); ++search @@ -139,15 +137,13 @@ void OColumnAlias::initialize( const ::com::sun::star::uno::Reference< ::com::su m_aAliasMap.erase( search ); m_aAliasMap[ sAssignedAlias ] = entry; - #if OSL_DEBUG_LEVEL > 0 bFound = true; - #endif break; } } - OSL_ENSURE( bFound, "OColumnAlias::setAlias: did not find a programmatic name which exists in the configuration!" ); + OSL_ENSURE( bFound, "OColumnAlias::setAlias: did not find a programmatic name which exists in the configuration!" ); (void)bFound; } } catch( const Exception& ) |