summaryrefslogtreecommitdiffstats
path: root/connectivity
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-07-17 16:47:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-07-17 16:47:54 +0100
commit7fbadc4db37e02d78fde34d6fd52feb73cc5dd1f (patch)
treea24a717e79b5184f1997744c2df84d336a0336c0 /connectivity
parentsvx: this was supposed to be "image/x-eps" (diff)
downloadcore-7fbadc4db37e02d78fde34d6fd52feb73cc5dd1f.tar.gz
core-7fbadc4db37e02d78fde34d6fd52feb73cc5dd1f.zip
error C2065: ´bFound´ : undeclared identifier
Change-Id: Ibf72f77458d837849fe20361ca751dce2989830c
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/mozab/MColumnAlias.cxx6
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& )