From 080122ec8abfb7e4e9a1c822a5ce402a7feb9183 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sat, 24 Jan 2015 10:17:02 +0100 Subject: [PATCH] doc: fix references to isl_id_to_ast_expr Signed-off-by: Sven Verdoolaege --- doc/user.pod | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/doc/user.pod b/doc/user.pod index c697a735..52874020 100644 --- a/doc/user.pod +++ b/doc/user.pod @@ -501,7 +501,7 @@ in which the object was created. #include isl_ctx *isl_id_to_ast_expr_get_ctx( - __isl_keep id_to_ast_expr *id2expr); + __isl_keep isl_id_to_ast_expr *id2expr); #include isl_ctx *isl_point_get_ctx(__isl_keep isl_point *pnt); @@ -6959,12 +6959,12 @@ Associative arrays can be created, copied and freed using the following functions. #include - __isl_give id_to_ast_expr *isl_id_to_ast_expr_alloc( + __isl_give isl_id_to_ast_expr *isl_id_to_ast_expr_alloc( isl_ctx *ctx, int min_size); - __isl_give id_to_ast_expr *isl_id_to_ast_expr_copy( - __isl_keep id_to_ast_expr *id2expr); - __isl_null id_to_ast_expr *isl_id_to_ast_expr_free( - __isl_take id_to_ast_expr *id2expr); + __isl_give isl_id_to_ast_expr *isl_id_to_ast_expr_copy( + __isl_keep isl_id_to_ast_expr *id2expr); + __isl_null isl_id_to_ast_expr *isl_id_to_ast_expr_free( + __isl_take isl_id_to_ast_expr *id2expr); The C argument to C can be used to specify the expected size of the associative array. @@ -6974,13 +6974,13 @@ Associative arrays can be inspected using the following functions. #include int isl_id_to_ast_expr_has( - __isl_keep id_to_ast_expr *id2expr, + __isl_keep isl_id_to_ast_expr *id2expr, __isl_keep isl_id *key); __isl_give isl_ast_expr *isl_id_to_ast_expr_get( - __isl_keep id_to_ast_expr *id2expr, + __isl_keep isl_id_to_ast_expr *id2expr, __isl_take isl_id *key); int isl_id_to_ast_expr_foreach( - __isl_keep id_to_ast_expr *id2expr, + __isl_keep isl_id_to_ast_expr *id2expr, int (*fn)(__isl_take isl_id *key, __isl_take isl_ast_expr *val, void *user), void *user); @@ -6988,12 +6988,12 @@ Associative arrays can be inspected using the following functions. They can be modified using the following function. #include - __isl_give id_to_ast_expr *isl_id_to_ast_expr_set( - __isl_take id_to_ast_expr *id2expr, + __isl_give isl_id_to_ast_expr *isl_id_to_ast_expr_set( + __isl_take isl_id_to_ast_expr *id2expr, __isl_take isl_id *key, __isl_take isl_ast_expr *val); - __isl_give id_to_ast_expr *isl_id_to_ast_expr_drop( - __isl_take id_to_ast_expr *id2expr, + __isl_give isl_id_to_ast_expr *isl_id_to_ast_expr_drop( + __isl_take isl_id_to_ast_expr *id2expr, __isl_take isl_id *key); Associative arrays can be printed using the following function. @@ -7001,7 +7001,7 @@ Associative arrays can be printed using the following function. #include __isl_give isl_printer *isl_printer_print_id_to_ast_expr( __isl_take isl_printer *p, - __isl_keep id_to_ast_expr *id2expr); + __isl_keep isl_id_to_ast_expr *id2expr); =head2 Vectors -- 2.11.4.GIT