diff --git a/src/headers/transpiler/Target.hpp b/src/headers/transpiler/Target.hpp index 24eeec4..d01b9e5 100644 --- a/src/headers/transpiler/Target.hpp +++ b/src/headers/transpiler/Target.hpp @@ -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);