[Redbutton-devel] SF.net SVN: redbutton: [366] redbutton-author/trunk/ccc.y
Brought to you by:
skilvington
|
From: <ski...@us...> - 2007-08-31 13:56:42
|
Revision: 366
http://redbutton.svn.sourceforge.net/redbutton/?rev=366&view=rev
Author: skilvington
Date: 2007-08-31 06:56:33 -0700 (Fri, 31 Aug 2007)
Log Message:
-----------
remove unused code
Modified Paths:
--------------
redbutton-author/trunk/ccc.y
Modified: redbutton-author/trunk/ccc.y
===================================================================
--- redbutton-author/trunk/ccc.y 2007-08-31 13:44:42 UTC (rev 365)
+++ redbutton-author/trunk/ccc.y 2007-08-31 13:56:33 UTC (rev 366)
@@ -27,7 +27,6 @@
struct item *next;
char *name;
enum item_type type;
- bool include; /* should we output this optional item or not */
};
/* a list of strings */
@@ -350,7 +349,6 @@
new_item->next = NULL;
new_item->name = name; /* lex strdup's it for us */
new_item->type = type;
- new_item->include = true;
/* if it is a literal, make a token for it */
if(new_item->type == IT_LITERAL)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|