diff options
| author | 2020-10-21 11:34:58 +0200 | |
|---|---|---|
| committer | 2020-10-21 11:34:58 +0200 | |
| commit | 671bf7bdf20ccc61339d0959b1fb2f81a316825b (patch) | |
| tree | 595be6924b831977a8680bb3be9c5bccdf2bc4a6 /node/repeaternode.cpp | |
| parent | d1a947bed91963e788287e186f831202b8355eea (diff) | |
| download | OneRoll-671bf7bdf20ccc61339d0959b1fb2f81a316825b.tar.gz OneRoll-671bf7bdf20ccc61339d0959b1fb2f81a316825b.zip | |
fix output
Diffstat (limited to 'node/repeaternode.cpp')
| -rw-r--r-- | node/repeaternode.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/node/repeaternode.cpp b/node/repeaternode.cpp index 14ed956..9fd4f5a 100644 --- a/node/repeaternode.cpp +++ b/node/repeaternode.cpp @@ -112,7 +112,8 @@ void RepeaterNode::run(ExecutionNode* previousNode) { ParsingToolBox parsingBox; parsingBox.setStartNodes(instructions); - auto finalString= parsingBox.finalStringResult(); + auto finalString + = parsingBox.finalStringResult([](const QString& result, const QString&, bool) { return result; }); listOfStrResult << finalString; } if(!listOfStrResult.isEmpty()) |