-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02fee56
commit e71c45b
Showing
3 changed files
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// | ||
// Programmer: Craig Stuart Sapp <[email protected]> | ||
// Creation Date: Sat Aug 8 12:24:49 PDT 2015 | ||
// Last Modified: Di 17 Jan 2023 21:06:51 CET | ||
// Last Modified: Di 17 Jan 2023 21:09:28 CET | ||
// Filename: humlib.h | ||
// URL: https://github.com/craigsapp/humlib/blob/master/include/humlib.h | ||
// Syntax: C++11 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// | ||
// Programmer: Craig Stuart Sapp <[email protected]> | ||
// Creation Date: Sat Aug 8 12:24:49 PDT 2015 | ||
// Last Modified: Di 17 Jan 2023 21:06:51 CET | ||
// Last Modified: Di 17 Jan 2023 21:09:28 CET | ||
// Filename: /include/humlib.cpp | ||
// URL: https://github.com/craigsapp/humlib/blob/master/src/humlib.cpp | ||
// Syntax: C++11 | ||
|
@@ -78045,8 +78045,7 @@ void Tool_fb::processFile(HumdrumFile& infile) { | |
|
||
HTp nextToken = currentToken->getNextField(); | ||
if (nextToken && (initialTokenTrack == nextToken->getTrack())) { | ||
cerr << nextToken->getText(); | ||
This comment has been minimized.
Sorry, something went wrong. |
||
currentToken = nextToken; | ||
currentToken = nextToken; | ||
} else { | ||
// Break loop if nextToken is not the same track as initialTokenTrack | ||
break; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cerr << nextToken->getText();
works, but you can also do this:
(they are both equivalent)