Skip to content

Commit

Permalink
Simplified if-else. There are no functional changes
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitcowboy committed Jul 20, 2021
1 parent 9d1c135 commit 7fa1ff8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 38 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

5 changes: 1 addition & 4 deletions gnuplot_i.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -897,10 +897,7 @@ void stringtok (Container &container,
container.push_back (in.substr(i));
return;
}
else
{
container.push_back (in.substr(i, j - i));
}
container.push_back (in.substr(i, j - i));

// set up for next loop
i = j + 1;
Expand Down

0 comments on commit 7fa1ff8

Please sign in to comment.