From f78def7afb9310dedbb1664ca5cabcd7edfd8d50 Mon Sep 17 00:00:00 2001 From: Nathan Ridge Date: Fri, 23 Sep 2016 01:37:00 -0400 Subject: [PATCH] Update the function body execution in PDOMCPPFunction.update() Change-Id: I17d8fe9d3222ac66f901ca9740feee6b5891faa5 --- .../eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPFunction.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPFunction.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPFunction.java index 1cd567165f0..33cb107a04b 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPFunction.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPFunction.java @@ -192,6 +192,7 @@ class PDOMCPPFunction extends PDOMCPPBinding implements ICPPFunction, IPDOMOverl PDOMCPPTypeList.clearTypes(this, oldRec); } linkage.storeEvaluation(record + RETURN_EXPRESSION, CPPFunction.getReturnExpression(func, point)); + linkage.storeExecution(record + FUNCTION_BODY, CPPFunction.getFunctionBodyExecution(func, point)); } private void storeExceptionSpec(IType[] exceptionSpec) throws CoreException {