summaryrefslogtreecommitdiff
path: root/isl_constraint_private.h
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2013-03-27 12:09:23 +0100
committerSven Verdoolaege <skimo@kotnet.org>2013-04-22 09:38:20 +0200
commit3e27dfa1440571ecd60acd92dbf819cafbeb701f (patch)
tree4b8e8a63397dbfff08071beb56cf6dc385482289 /isl_constraint_private.h
parent60e4f6aa75ab6d211320e31272678b40c12c618e (diff)
downloadisl-3e27dfa1440571ecd60acd92dbf819cafbeb701f.tar.gz
isl-3e27dfa1440571ecd60acd92dbf819cafbeb701f.tar.bz2
isl-3e27dfa1440571ecd60acd92dbf819cafbeb701f.zip
declare isl_*_list together with isl_*
Some of the isl_*_list types were declared together in isl/list.h. It seems cleaner to declare them together with the corresponding isl_* instead. Similarly, these types were defined together in isl_list_private.h and are now defined together with the corresponding isl_*. Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
Diffstat (limited to 'isl_constraint_private.h')
-rw-r--r--isl_constraint_private.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/isl_constraint_private.h b/isl_constraint_private.h
index 83143254..1a3b44e3 100644
--- a/isl_constraint_private.h
+++ b/isl_constraint_private.h
@@ -12,6 +12,11 @@ struct isl_constraint {
isl_vec *v;
};
+#undef EL
+#define EL isl_constraint
+
+#include <isl_list_templ.h>
+
struct isl_constraint *isl_basic_set_constraint(struct isl_basic_set *bset,
isl_int **line);