absyntax_utils/search_varfb_instance_type.cc
changeset 202 da1a8186f86f
parent 181 38d6eb056260
child 226 29f8ffc203c1
--- a/absyntax_utils/search_varfb_instance_type.cc	Thu Jul 02 11:26:25 2009 +0100
+++ b/absyntax_utils/search_varfb_instance_type.cc	Thu Aug 27 16:06:46 2009 +0100
@@ -46,6 +46,10 @@
  */
 
 
+/*
+ * TODO: this code has a memory leak...
+ *       We call 'new' in several locations, but bever get to 'delete' the object instances...
+ */
 #include "absyntax_utils.hh"
 
 
@@ -67,7 +71,7 @@
    */
   symbol_c *var_name_part = decompose_var_instance_name->next_part();
   if (NULL == var_name_part) ERROR;
-  
+
   /* Now we try to find the variable instance declaration, to determine its type... */
   symbol_c *var_decl = search_var_instance_decl.get_decl(var_name_part);
   if (NULL == var_decl) {