]> andersk Git - splint.git/blobdiff - src/Headers/valueTable.h
Fixed line numbering when multi-line macro parameters are used.
[splint.git] / src / Headers / valueTable.h
index f18892010eaeb24bf91709b5c5e34f7a32a3ff53..51efe10b2a9665c7cacf6bec526f9a03b20f5b83 100644 (file)
@@ -57,11 +57,11 @@ extern /*@only@*/ valueTable valueTable_copy (valueTable p_s) ;
 
 # define valueTable_elements(p_g, m_key, m_el) \
    { if (valueTable_isDefined (p_g)) {  int m_ind; \
-     { /*@i32@*/ for (m_ind = 0 ; m_ind < (p_g)->size; m_ind++) \
+     { for (m_ind = 0 ; m_ind < (p_g)->size; m_ind++) \
        { ghbucket m_hb; m_hb = (p_g)->buckets[m_ind]; \
          if (m_hb != NULL) { \
            int m_j; \
-      for (m_j = 0; m_j < (m_hb)->size; m_j++) { \
+           for (m_j = 0; m_j < (m_hb)->size; m_j++) { \
              cstring m_key; stateValue m_el; m_key = (m_hb)->entries[m_j]->key; \
    /*@access stateValue@*/ m_el = (stateValue) (m_hb)->entries[m_j]->val; /*@noaccess stateValue@*/
 
This page took 0.037278 seconds and 4 git commands to generate.