Remove the oldClosingBraceIsFar boolean in Target.hpp

This commit is contained in:
Username404 2021-09-02 10:35:53 +02:00
parent 76c8975e27
commit 37a6c0e047
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 0 additions and 1 deletions

View File

@ -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);