Remove the oldClosingBraceIsFar boolean in Target.hpp
This commit is contained in:
parent
76c8975e27
commit
37a6c0e047
|
@ -43,7 +43,6 @@ protected:
|
|||
for (unsigned long i = 0; i < interpolationVector.size(); ++i) {
|
||||
const auto& occurrence = interpolationVector[i];
|
||||
const bool hasNext = (i + 1) < interpolationVector.size();
|
||||
const bool oldClosingBraceIsFar = closingBrace >= occurrence;
|
||||
if (i > 0) output << concatenationCharacters;
|
||||
output << openCharacters << view.substr(closingBrace + (i > 0), (occurrence - closingBrace) - (i > 0));
|
||||
closingBrace = view.find_first_of(interpolationCloseString, occurrence);
|
||||
|
|
Loading…
Reference in New Issue