From aba44b70b498d646842a86ee0751b9adfce32365 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Tue, 6 Sep 2016 14:36:54 +0200 Subject: [PATCH] isl_union_*_set_has_dim: rename "dim" variable to "space" Signed-off-by: Sven Verdoolaege --- isl_union_templ.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/isl_union_templ.c b/isl_union_templ.c index 7783c265..ac1902ec 100644 --- a/isl_union_templ.c +++ b/isl_union_templ.c @@ -676,9 +676,9 @@ S(UNION,match_domain_data) { static int FN(UNION,set_has_dim)(const void *entry, const void *val) { isl_set *set = (isl_set *)entry; - isl_space *dim = (isl_space *)val; + isl_space *space = (isl_space *)val; - return isl_space_is_equal(set->dim, dim); + return isl_space_is_equal(set->dim, space); } /* Find the set in data->uset that lives in the same space as the domain -- 2.11.4.GIT