From 0c6edb89894baf78de13270f6a133478754adfd5 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 22 Feb 2011 02:51:33 -0500 Subject: [PATCH] Disable debug output. --- mojoshader_compiler.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mojoshader_compiler.c b/mojoshader_compiler.c index bd816fe4..fe32b27a 100644 --- a/mojoshader_compiler.c +++ b/mojoshader_compiler.c @@ -2511,7 +2511,8 @@ static const MOJOSHADER_astDataType *match_func_to_call(Context *ctx, args = args->next; } // while; -#define DEBUG_OVERLOADS 1 +// !!! FIXME: remove this debug code later. +#define DEBUG_OVERLOADS 0 #if DEBUG_OVERLOADS printf("Attempt to call function %s(", sym); args = ast->args;