diff --git a/Compiler/src/ConstantFolding.cpp b/Compiler/src/ConstantFolding.cpp index 7c119b16..471d4b99 100644 --- a/Compiler/src/ConstantFolding.cpp +++ b/Compiler/src/ConstantFolding.cpp @@ -351,8 +351,6 @@ struct ConstantVisitor : AstVisitor } else if (AstExprInterpString* interpString = node->as()) { - // INTERP CODE REVIEW: This can theoretically fold something like `debug mode: {DEBUG_MODE}` where DEBUG_MODE is true. - // Is this necessary or just something we can do later? for (AstExpr* expression : interpString->expressions) analyze(expression); }