summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-06-02 14:43:03 -0700
committerCarl Worth <cworth@cworth.org>2010-06-02 14:43:03 -0700
commitc7c95fe51f0ff83d4d3e07a926f96336248f9509 (patch)
tree03010649df61517125fd6fc448fd15dd4857b16d
parent111e25bd84fb923bbab5b0ca76bbbb5d9a537a26 (diff)
Remove dead code: _glcpp_parser_expand_token_list_onto
This function simply isn't being called anymore.
-rw-r--r--glcpp-parse.y10
1 files changed, 0 insertions, 10 deletions
diff --git a/glcpp-parse.y b/glcpp-parse.y
index dd8e133..a4e6559 100644
--- a/glcpp-parse.y
+++ b/glcpp-parse.y
@@ -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)