You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jw...@apache.org on 2003/11/16 02:42:50 UTC

cvs commit: apr/include apr_ring.h

jwoolley    2003/11/15 17:42:50

  Modified:    include  apr_ring.h
  Log:
  rip
  
  Revision  Changes    Path
  1.14      +0 -14     apr/include/apr_ring.h
  
  Index: apr_ring.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_ring.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -d -u -r1.13 -r1.14
  --- apr_ring.h	16 Nov 2003 01:26:07 -0000	1.13
  +++ apr_ring.h	16 Nov 2003 01:42:50 -0000	1.14
  @@ -416,20 +416,6 @@
       APR_RING_UNSPLICE((ep), (ep), link)
   
   
  -/**
  - * Iterate through a ring backwards
  - * @param ep The current element
  - * @param hp The ring to iterate over
  - * @param elem The name of the element struct
  - * @param link The name of the APR_RING_ENTRY in the element struct
  - * @see APR_RING_FOREACH
  - */
  -#define APR_RING_FOREACH_REVERSE(ep, hp, elem, link)			\
  -    for ((ep)  = APR_RING_LAST((hp));					\
  -	 (ep) != APR_RING_SENTINEL((hp), elem, link);			\
  -	 (ep)  = APR_RING_PREV((ep), link))
  -
  -
   /* Debugging tools: */
   
   #ifdef APR_RING_DEBUG