]> andersk Git - splint.git/blobdiff - src/mtLoseReferenceList.c
Fixed all /*@i...@*/ tags (except 1).
[splint.git] / src / mtLoseReferenceList.c
index 20bb914ce65bf14e7066e9dfb67ea00d52e780d2..ff756e4b73a8a5283011a2ba453c8ec8419c6bac 100644 (file)
@@ -74,7 +74,7 @@ mtLoseReferenceList_grow (/*@notnull@*/ mtLoseReferenceList s)
   s->elements = newelements;
 }
 
-mtLoseReferenceList mtLoseReferenceList_single (/*@keep@*/ mtLoseReference el) 
+mtLoseReferenceList mtLoseReferenceList_single (mtLoseReference el) 
 {
   mtLoseReferenceList s = mtLoseReferenceList_new ();
   s = mtLoseReferenceList_add (s, el);
@@ -94,19 +94,19 @@ mtLoseReferenceList mtLoseReferenceList_add (mtLoseReferenceList s, /*@keep@*/ m
     }
   
   s->nspace--;
-  /*@i32@*/ s->elements[s->nelements] = el;
+  s->elements[s->nelements] = el;
   s->nelements++;
 
-  /*@i32@*/ return s;
+  return s;
 }
 
-mtLoseReferenceList mtLoseReferenceList_prepend (mtLoseReferenceList s, /*@keep@*/ mtLoseReference el)
+mtLoseReferenceList mtLoseReferenceList_prepend (mtLoseReferenceList s, mtLoseReference el)
 {
   int i;
 
   if (!mtLoseReferenceList_isDefined (s))
     {
-      /*@i32@*/ return mtLoseReferenceList_single (el);
+      return mtLoseReferenceList_single (el);
     }
 
   if (s->nspace <= 0)
@@ -121,10 +121,10 @@ mtLoseReferenceList mtLoseReferenceList_prepend (mtLoseReferenceList s, /*@keep@
       s->elements[i] = s->elements [i - 1];
     }
 
-  /*@i32@*/ s->elements[0] = el;
+  s->elements[0] = el;
   s->nelements++;
 
-  /*@i32@*/ return s;
+  return s;
 }
 
 cstring
This page took 0.034511 seconds and 4 git commands to generate.