Skip to content

Commit

Permalink
Merge pull request #17174 from Dr15Jones/fixSpacing
Browse files Browse the repository at this point in the history
Replaced tab with space to avoid gcc 6.3 warning in L1Trigger/L1TCommon
  • Loading branch information
davidlange6 committed Jan 14, 2017
2 parents 251d630 + 9bf4dad commit 98a335b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions L1Trigger/L1TCommon/src/Setting.cc
Expand Up @@ -191,10 +191,10 @@ void TableRow::setRowColumns(const std::vector<std::string>& columns)
if( colDict_.get() == 0 )
colDict_ = std::shared_ptr< std::map<std::string,int> >(new std::map<std::string,int>());

colDict_->clear();
colDict_->clear();

for(unsigned int i=0; i<columns.size(); i++)
(*colDict_)[ columns[i] ] = i;
for(unsigned int i=0; i<columns.size(); i++)
(*colDict_)[ columns[i] ] = i;
}

void TableRow::setRowTypes(const std::vector<std::string>& types)
Expand Down

0 comments on commit 98a335b

Please sign in to comment.