Diff for /rpl/src/rplexternals.h between versions 1.104 and 1.106

version 1.104, 2024/01/17 16:57:18 version 1.106, 2025/04/15 10:17:57
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.36    RPL/2 (R) version 4.1.36
   Copyright (C) 1989-2024 Dr. BERTRAND Joël    Copyright (C) 1989-2025 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.104  
changed lines
  Added in v.1.106


CVSweb interface <joel.bertrand@systella.fr>