Changeset fd23627033ffe0422437fbff87665c657330f772

Show
Ignore:
Timestamp:
05/05/10 15:22:25 (2 years ago)
Author:
Philip Herron <redbrain@…>
Parents:
43f0e16e9c97fea64969bca6b75ec99db4698573
Children:
2d482ecb0a2abf82199a1f7c2350125d362c000f
git-committer:
Philip Herron <redbrain@alpha.(none)> / 2010-05-05T15:22:25Z+0100
Message:

quick commit

Location:
src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • src/obj_integer.c

    rb8cdd65 rfd23627  
    3232#include <gmp.h> 
    3333#include <mpfr.h> 
     34 
    3435#include <math.h> 
    3536 
     
    5152  crl_symbol_init( retval ); 
    5253 
    53   crl_obj_state_t *o = (crl_obj_state_t *) 
     54  crl_obj_state_t * o = (crl_obj_state_t *) 
    5455    crl_malloc( sizeof(crl_obj_state_t) ); 
    5556  o->identifier = crl_strdup("Int"); 
     
    151152              crl_fatal("overflow in integer addition!\n"); 
    152153            } 
    153            
     154 
    154155          crl_symbol_obj * init; 
    155156          crl_symbol_init( init ); 
  • src/ss_parser.y

    r43f0e16 rfd23627  
    168168            { 
    169169              crl_runtime_exec_toplevel( $2, crl_runtime_ctx_table ); 
    170               if( (( $2->type != STRUCTURE_FUNCTION_DEF) &&  
     170              if( (( $2->type != STRUCTURE_FUNCTION_DEF) && 
    171171                  ($2->type != STRUCTURE_OBJECT_DEF)) ) 
    172172                { 
     
    223223            | accessor 
    224224            { 
    225               $$= $1;  
     225              $$= $1; 
    226226            } 
    227227            ;