summaryrefslogtreecommitdiff
path: root/includes/compiler/templates.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/compiler/templates.h')
-rw-r--r--includes/compiler/templates.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/compiler/templates.h b/includes/compiler/templates.h
index 85bc5ec..227dd7b 100644
--- a/includes/compiler/templates.h
+++ b/includes/compiler/templates.h
@@ -160,6 +160,7 @@ struct TemplClassInst {
#define TEMPL_CLASS(ty) ( (TemplClass *) (ty) )
#define TEMPL_CLASS_INST(ty) ( (TemplClassInst *) (ty) )
+#define IS_TEMPL_CLASS(ty) ( IS_TYPE_CLASS(ty) && (TYPE_CLASS(ty)->flags & CLASS_FLAGS_100) )
/*************/
/* Functions */
@@ -189,6 +190,10 @@ struct TemplFuncInstance { // verified via CPrec
Boolean static_instantiated;
};
+#define TEMPL_FUNC(ty) ( (TemplateFunction *) (ty) )
+#define TEMPL_FUNC_INST(ty) ( (TemplFuncInstance *) (ty) )
+#define IS_TEMPL_FUNC(ty) ( IS_TYPE_FUNC(ty) && (TYPE_FUNC(ty)->flags & FUNC_FLAGS_100000) )
+
/***********/
/* Actions */
/***********/