ast_map_inc_ref method
\brief Increment the reference counter of the given AST map.
def_API('Z3_ast_map_inc_ref', VOID, (_in(CONTEXT), _in(AST_MAP)))
Implementation
void ast_map_inc_ref(
Z3_context c,
Z3_ast_map m,
) {
return _ast_map_inc_ref(
c,
m,
);
}