Diff for /rpl/src/rplexternals.h between versions 1.103 and 1.105

version 1.103, 2024/01/09 07:33:56 version 1.105, 2024/06/27 17:21:40
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.35    RPL/2 (R) version 4.1.36
   Copyright (C) 1989-2024 Dr. BERTRAND Joël    Copyright (C) 1989-2024 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
Line 885 Line 885
     } } while(0)      } } while(0)
   
 #define vectorSize(rpl_object) \  #define vectorSize(rpl_object) \
     ({ integer8 __size; if (((*rpl_object).type == VIN) || \      ({ integer8 __size = 0; if (((*rpl_object).type == VIN) || \
             ((*rpl_object).type == VRL) || \              ((*rpl_object).type == VRL) || \
             ((*rpl_object).type == VCX)) \              ((*rpl_object).type == VCX)) \
         __size = (*((struct_vecteur *) (*rpl_object).objet)).taille; \          __size = (*((struct_vecteur *) (*rpl_object).objet)).taille; \

Removed from v.1.103  
changed lines
  Added in v.1.105


CVSweb interface <joel.bertrand@systella.fr>