Skip to content

Commit

Permalink
Merge pull request #3 from franziska-wegner/franziska-wegner/2023/dec…
Browse files Browse the repository at this point in the history
…ember/debug-build-bug-fix

Fix a debug build error w.r.t. Qt debug messages, i.e., endl becomes Qt::ends. The namespace is required in this particular case.
  • Loading branch information
franziska-wegner authored Dec 5, 2023
2 parents 1167dbe + 14df437 commit 18c79b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runnables/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ int main(int argc, char *argv[]) {
auto outputType = parser.value("outputType").toUpper();

#ifndef NDEBUG
qDebug() << endl;
qDebug() << Qt::endl;
qDebug() << "\tInputFile :" << inputFile;
qDebug() << "\tOutputDir :" << outputDir;
qDebug() << "\tAlgorithm :" << algorithm;
Expand Down

0 comments on commit 18c79b5

Please sign in to comment.