Remove dead code: _glcpp_parser_expand_token_list_onto
authorCarl Worth <cworth@cworth.org>
Wed, 2 Jun 2010 21:43:03 +0000 (14:43 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 2 Jun 2010 21:43:03 +0000 (14:43 -0700)
This function simply isn't being called anymore.

glcpp-parse.y

index dd8e133f5506ff9ec38a3105c5d11b26dcbdee36..a4e6559282c188d4cd91197336250d48888e7bcb 100644 (file)
@@ -1320,16 +1320,6 @@ _glcpp_parser_expand_token_list (glcpp_parser_t *parser,
        list->non_space_tail = list->tail;
 }
 
-static void
-_glcpp_parser_expand_token_list_onto (glcpp_parser_t *parser,
-                                     token_list_t *list,
-                                     token_list_t *result)
-{
-       _glcpp_parser_expand_token_list (parser, list);
-
-       _token_list_append_list (result, list);
-}
-
 void
 _glcpp_parser_print_expanded_token_list (glcpp_parser_t *parser,
                                         token_list_t *list)