Skip to content

Commit

Permalink
Refs #8962 Accidently removed a call when fixing errors
Browse files Browse the repository at this point in the history
I accidently removed a call to the function that counts quotes when i was fixing the warnings. so the load algorithm wouldn't accept a file with quotes
  • Loading branch information
keithnbrown committed Apr 14, 2014
1 parent 94d9fb7 commit 523e2ec
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Code/Mantid/Framework/DataHandling/src/LoadReflTBL.cpp
Expand Up @@ -262,6 +262,7 @@ namespace Mantid
{
//More than 16 will need further checks as more is only ok when pairs of quotes surround a comma, meaning it isn't a delimiter
std::vector<std::vector<size_t>> quoteBounds;
findQuotePairs(line, quoteBounds);
//if we didn't find any quotes, then there are too many commas and we definitely have too many delimiters
if (quoteBounds.size() == 0)
{
Expand Down

0 comments on commit 523e2ec

Please sign in to comment.