summaryrefslogtreecommitdiff
path: root/src/analysis/types/template.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/types/template.c')
-rw-r--r--src/analysis/types/template.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/analysis/types/template.c b/src/analysis/types/template.c
index 42a9ebe..f24eaaa 100644
--- a/src/analysis/types/template.c
+++ b/src/analysis/types/template.c
@@ -65,7 +65,7 @@ static GDataType *g_template_type_dup(const GTemplateType *);
static char *g_template_type_to_string(const GTemplateType *);
/* Procède à l'impression de la description d'un type. */
-static void g_template_type_output(const GTemplateType *, GLangOutput *, GBufferLine *, bool, bool);
+//static void g_template_type_output(const GTemplateType *, GLangOutput *, GBufferLine *, bool, bool);
@@ -112,7 +112,7 @@ static void g_template_type_init(GTemplateType *type)
data_type->dup = (type_dup_fc)g_template_type_dup;
data_type->to_string = (type_to_string_fc)g_template_type_to_string;
- data_type->output = (output_type_fc)g_template_type_output;
+ //data_type->output = (output_type_fc)g_template_type_output;
ce_type = G_CLASS_ENUM_TYPE(type);
@@ -233,7 +233,7 @@ static char *g_template_type_to_string(const GTemplateType *type)
* Remarques : - *
* *
******************************************************************************/
-
+#if 0
static void g_template_type_output(const GTemplateType *type, GLangOutput *lang, GBufferLine *line, bool info, bool full)
{
size_t i; /* Boucle de parcours */
@@ -254,6 +254,7 @@ static void g_template_type_output(const GTemplateType *type, GLangOutput *lang,
g_buffer_line_append_text(line, BLC_LAST_USED, ">", 1, info ? RTT_COMMENT : RTT_LTGT, NULL);
}
+#endif
/******************************************************************************