diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/EvalFunctionCall.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/EvalFunctionCall.java index a5836e0302a..e17bcd39091 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/EvalFunctionCall.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/EvalFunctionCall.java @@ -294,8 +294,6 @@ public final class EvalFunctionCall extends CPPDependentEvaluation { if (!(specialized instanceof ICPPFunction)) return this; bodyExec = CPPFunction.getFunctionBodyExecution((ICPPFunction) specialized, context.getPoint()); - // TODO(nathanridge): Instead of instantiating the execution below in instantiateFunctionBody(), - // have getFunctionBodyExecution() return the instantiated execution already. } if (bodyExec != null) { bodyExec = bodyExec.executeForFunctionCall(record, context.recordStep());