From 16d899ace5df478e2b36778df9b264ede971bdac Mon Sep 17 00:00:00 2001
From: Bill Currie <bill@taniwha.org>
Date: Tue, 25 Jun 2013 11:23:02 +0900
Subject: [PATCH] Remove the string:string concatentation TODO item.

I think it may have been for compatibility with a certain qcc variant (no
idea which one, though). While the shift/reduce conflict is fixable using
"%prec IFX" on the const:string rule, the colon breaks test?"a":"b".
Putting parentheses around "a" allows such a construct, requiring them
breaks comatibility with C. I think this feature just isn't worth that.
---
 tools/qfcc/TODO | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tools/qfcc/TODO b/tools/qfcc/TODO
index f44c2bf15..ed68de57c 100644
--- a/tools/qfcc/TODO
+++ b/tools/qfcc/TODO
@@ -20,4 +20,3 @@ o	optional arguments for functions (alternative to overloading)
 	vector(vector fwd, optional vector up) vectoangles = #51;
 ?	try to reduce memory consumption
 ??	embedded nul characters in strings (why?)
-??	"":"" string concatenation (parser issues) (why?)