From 8d41c9a04b8c8b09bcdf83fd53b38580fbab9c2e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 12 Mar 2010 08:53:43 -0500 Subject: [PATCH] Corrected FIXME comment. --- mojoshader_preprocessor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mojoshader_preprocessor.c b/mojoshader_preprocessor.c index 6c384c3c..99ca3c7d 100644 --- a/mojoshader_preprocessor.c +++ b/mojoshader_preprocessor.c @@ -1564,7 +1564,7 @@ static int handle_macro_args(Context *ctx, const char *sym, const Define *def) static int handle_pp_identifier(Context *ctx) { - if (ctx->recursion_count++ >= 256) // !!! FIXME: necessary now? + if (ctx->recursion_count++ >= 256) // !!! FIXME: gcc can figure this out. { fail(ctx, "Recursing macros"); return 0;