Edje cc: Remove unused parameters cpp_token_line/file.
authortasn <tasn>
Thu, 19 Jan 2012 08:17:07 +0000 (08:17 +0000)
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 19 Jan 2012 08:17:07 +0000 (08:17 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@67323 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/edje_cc_parse.c

index ae68e00..adc08d3 100644 (file)
@@ -238,8 +238,6 @@ next_token(char *p, char *end, char **new_p, int *delim)
    int in_comment_sa  = 0;
    int had_quote = 0;
    int is_escaped = 0;
-   char *cpp_token_line = NULL;
-   char *cpp_token_file = NULL;
 
    *delim = 0;
    if (p >= end) return NULL;
@@ -249,8 +247,6 @@ next_token(char *p, char *end, char **new_p, int *delim)
          {
             in_comment_ss = 0;
             in_comment_cpp = 0;
-            cpp_token_line = NULL;
-            cpp_token_file = NULL;
             line++;
          }
        if ((!in_comment_ss) && (!in_comment_sa))
@@ -275,8 +271,6 @@ next_token(char *p, char *end, char **new_p, int *delim)
             /* their line format is
              * #line <line no. of next line> <filename from next line on> [??]
              */
-            cpp_token_line = NULL;
-            cpp_token_file = NULL;
 
             pp = p;
             while ((pp < end) && (*pp != '\n'))