Skip to content

Commit

Permalink
Fix StringMinipulator split. #59
Browse files Browse the repository at this point in the history
  • Loading branch information
dladams committed May 4, 2023
1 parent 946d400 commit 157af46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dunecore/DuneCommon/Utility/StringManipulator.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const StringVector& StringManipulator::split(string seps, bool fullSplit) {
// Split.
string word;
bool isSep = false;
for ( char ch : m_str ) {
for ( char ch : str ) {
isSep = ch == csep;
if ( isSep ) {
if ( fullSplit || word.size() ) {
Expand Down

0 comments on commit 157af46

Please sign in to comment.