summaryrefslogtreecommitdiff
path: root/src/analysis/types/basic.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-12-12 18:38:53 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-12-12 18:38:53 (GMT)
commit3754a5e3edeea98ce426b65772708ae91b291c1f (patch)
treee292aa254f59e61f6f9672b826f08be6f428ffdd /src/analysis/types/basic.c
parentdcc0438ff24efd5958b8d46940eb395ff2b7ed77 (diff)
Removed most of the code related to non-working decompilation.
Diffstat (limited to 'src/analysis/types/basic.c')
-rw-r--r--src/analysis/types/basic.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/analysis/types/basic.c b/src/analysis/types/basic.c
index 7278908..6a52fed 100644
--- a/src/analysis/types/basic.c
+++ b/src/analysis/types/basic.c
@@ -62,7 +62,7 @@ static GDataType *g_basic_type_dup(const GBasicType *);
static char *g_basic_type_to_string(const GBasicType *);
/* Procède à l'impression de la description d'un type. */
-static void g_basic_type_output(const GBasicType *, GLangOutput *, GBufferLine *, bool, bool);
+//static void g_basic_type_output(const GBasicType *, GLangOutput *, GBufferLine *, bool, bool);
@@ -108,7 +108,7 @@ static void g_basic_type_init(GBasicType *type)
data_type->dup = (type_dup_fc)g_basic_type_dup;
data_type->to_string = (type_to_string_fc)g_basic_type_to_string;
- data_type->output = (output_type_fc)g_basic_type_output;
+ //data_type->output = (output_type_fc)g_basic_type_output;
}
@@ -310,7 +310,7 @@ static char *g_basic_type_to_string(const GBasicType *type)
* Remarques : - *
* *
******************************************************************************/
-
+#if 0
static void g_basic_type_output(const GBasicType *type, GLangOutput *lang, GBufferLine *line, bool info, bool full)
{
char *text; /* Version humaine à imprimer */
@@ -324,6 +324,7 @@ static void g_basic_type_output(const GBasicType *type, GLangOutput *lang, GBuff
free(text);
}
+#endif
/******************************************************************************