Skip to content

Commit

Permalink
Merge pull request #3599 from ktf/clang-cond-formats
Browse files Browse the repository at this point in the history
Clang -- More clang cleanups
  • Loading branch information
ktf committed May 1, 2014
2 parents 6be8104 + 293347e commit 9a2e178
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion CondCore/CondDB/src/ConnectionPool.cc
Expand Up @@ -158,7 +158,7 @@ namespace cond {
if( it == m_dbTypes.end() ){
bt = checkBackendType( coralSession, connectionString );
if( bt == UNKNOWN_DB && writeCapable) bt = backType;
m_dbTypes.insert( std::make_pair( connectionString, bt ) ).first;
m_dbTypes.insert( std::make_pair( connectionString, bt ) );
} else {
bt = (BackendType) it->second;
}
Expand Down
3 changes: 0 additions & 3 deletions CondTools/Ecal/src/EcalTPGPhysicsConstHandler.cc
Expand Up @@ -313,7 +313,6 @@ void popcon::EcalTPGPhysicsConstHandler::getNewObjects()

DetId eb(DetId::Ecal, EcalBarrel);

int count;
for ( iterEB itt=temporaryMapEB.begin() ; itt != temporaryMapEB.end() ; itt++ ){

if (itt->first == (int)eb.rawId()){
Expand All @@ -326,8 +325,6 @@ void popcon::EcalTPGPhysicsConstHandler::getNewObjects()
physC->setValue(eb.rawId(),itt->second);

}

count++;
}

++icellsEB;
Expand Down

0 comments on commit 9a2e178

Please sign in to comment.