From aed01a35f1cd18ec6c9d3d151aee8d66afd67610 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Tue, 6 Sep 2016 15:44:37 +0200 Subject: [PATCH] drop deprecated isl_map_n_out This function was deprecated in isl-0.18-387-g3fa6191b1 (deprecate isl_map_n_*, Wed Oct 19 17:03:43 2016 +0200). It would have to be adjusted to the isl_size type that will be introduced next and there is little point in doing that to a deprecated function. Signed-off-by: Sven Verdoolaege --- include/isl/map.h | 2 -- isl_map.c | 5 ----- 2 files changed, 7 deletions(-) diff --git a/include/isl/map.h b/include/isl/map.h index 6137723d..646b18c0 100644 --- a/include/isl/map.h +++ b/include/isl/map.h @@ -43,8 +43,6 @@ unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap, enum isl_dim_type type); ISL_DEPRECATED -unsigned isl_map_n_out(__isl_keep const isl_map *map); -ISL_DEPRECATED unsigned isl_map_n_param(__isl_keep const isl_map *map); unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type); diff --git a/isl_map.c b/isl_map.c index 81382898..5ef20a4a 100644 --- a/isl_map.c +++ b/isl_map.c @@ -227,11 +227,6 @@ unsigned isl_basic_map_total_dim(__isl_keep const isl_basic_map *bmap) return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0; } -unsigned isl_map_n_out(__isl_keep const isl_map *map) -{ - return map ? map->dim->n_out : 0; -} - unsigned isl_map_n_param(__isl_keep const isl_map *map) { return map ? map->dim->nparam : 0; -- 2.11.4.GIT