Skip to content

Commit

Permalink
Refs #6098. Trying to get F16 builds working again.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed Nov 7, 2012
1 parent 7c8b830 commit b4f7360
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Code/Mantid/Framework/API/src/ExperimentInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1126,8 +1126,7 @@ namespace API
// create parameter's value as a sum of all tokens with index 3 or larger
// this allow a parameter's value to contain ";"
std::string paramValue = tokens[3];
int size = static_cast<int>(tokens.count());
for (int i = 4; i < size; i++ )
for (int i = 4; i < tokens.count(); i++ )
paramValue += ";" + tokens[4];
pmap.add(tokens[1], comp, tokens[2], paramValue);
}
Expand Down

0 comments on commit b4f7360

Please sign in to comment.