diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-03-08 23:21:31 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-03-08 23:21:31 -0500 |
commit | df0f06adcddb9c40b7cfe736a1a106a874f3513e (patch) | |
tree | 5c5a83749e6d348e4086fba65308a504bf89c08c /dimension/parse.h | |
parent | 533a684f0ec4d9afa3940ba5c4f516711015ed00 (diff) | |
download | dimension-df0f06adcddb9c40b7cfe736a1a106a874f3513e.tar.xz |
Don't treat colors and vectors as different types.
This allows things like 0.5*White, where White was #defined to be a color.
POV-Ray's colors.inc almost parses now.
Diffstat (limited to 'dimension/parse.h')
-rw-r--r-- | dimension/parse.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dimension/parse.h b/dimension/parse.h index 9511eab..8a5bb93 100644 --- a/dimension/parse.h +++ b/dimension/parse.h @@ -95,8 +95,6 @@ typedef enum { DMNSN_AST_AND, DMNSN_AST_OR, - DMNSN_AST_COLOR, - DMNSN_AST_IDENTIFIER, DMNSN_AST_STRING, |