Member predicate LocalConstantDeclStmt :: getVariableDeclExpr
Gets the n
th local constant declaration. For example, the second
(n = 1
) declaration is y = 2
in
void M() {
const int x = 1, y = 2;
}
Gets the n
th local constant declaration. For example, the second
(n = 1
) declaration is y = 2
in
void M() {
const int x = 1, y = 2;
}