absyntax_utils/function_call_iterator.cc
changeset 958 7474d2cd1d6e
parent 596 4efb11e44065
--- a/absyntax_utils/function_call_iterator.cc	Sun Nov 30 12:49:42 2014 +0000
+++ b/absyntax_utils/function_call_iterator.cc	Sat Dec 06 19:11:32 2014 +0000
@@ -89,10 +89,10 @@
 }
 
 /* Returns the name of the currently referenced function invocation */
-identifier_c *function_call_iterator_c::fname(void) {
-  identifier_c *identifier = dynamic_cast<identifier_c *>(current_fcall_name);
-  if (identifier == NULL) ERROR;
-  return identifier;
+token_c *function_call_iterator_c::fname(void) {
+  token_c *fname_sym = dynamic_cast<token_c *>(current_fcall_name);
+  if (fname_sym == NULL) ERROR;
+  return fname_sym;
 }