ΒΆconst clang::Expr& ignoreCFGOmittedNodes(
    const clang::Expr& E)

Description

Skip past nodes that the CFG does not emit. These nodes are invisible to flow-sensitive analysis, and should be ignored as they will effectively not exist. * `ParenExpr` - The CFG takes the operator precedence into account, but otherwise omits the node afterwards. * `ExprWithCleanups` - The CFG will generate the appropriate calls to destructors and then omit the node.

Declared at: clang/include/clang/Analysis/FlowSensitive/DataflowAnalysisContext.h:46

Parameters

const clang::Expr& E