Ignore:
Timestamp:
Apr 17, 2011, 10:28:40 AM (12 years ago)
Author:
Sam Hocevar
Message:

lisp: no LispSymbol? members are anonymous pointers any longer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • abuse/trunk/src/lisp/lisp_gc.cpp

    r488 r489  
    222222  if (root)
    223223  {
    224     root->value = collect_object(root->value);
    225     root->function = collect_object(root->function);
     224    root->value = (LispObject *)collect_object(root->value);
     225    root->function = (LispObject *)collect_object(root->function);
    226226    root->name = (LispString *)collect_object(root->name);
    227227    collect_symbols(root->left);
Note: See TracChangeset for help on using the changeset viewer.