Skip to content

Commit

Permalink
Clang format Refs #9067
Browse files Browse the repository at this point in the history
  • Loading branch information
DanNixon committed Apr 15, 2015
1 parent 93d8524 commit e0525f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/Kernel/src/ConfigService.cpp
Expand Up @@ -1010,11 +1010,11 @@ std::vector<std::string> ConfigServiceImpl::keys() const {
m_pConf->keys(rootKeys);

std::vector<std::string> allKeys;
for(auto rkIt = rootKeys.begin(); rkIt != rootKeys.end(); ++rkIt) {
for (auto rkIt = rootKeys.begin(); rkIt != rootKeys.end(); ++rkIt) {
std::vector<std::string> subKeys;
m_pConf->keys(*rkIt, subKeys);

for(auto skIt = subKeys.begin(); skIt != subKeys.end(); ++skIt) {
for (auto skIt = subKeys.begin(); skIt != subKeys.end(); ++skIt) {
allKeys.push_back(*riIt + "." + *skIt);
}
}
Expand Down

0 comments on commit e0525f2

Please sign in to comment.